Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.10" />
</ItemGroup>

<!-- CVE-2025-6965 (NU1903): SQLite < 3.50.2 memory corruption, flagged in the transitive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

<ItemGroup>
<!-- SIMD-accelerated, AOT-friendly tensor ops for the cosine-similarity demo. -->
<PackageReference Include="System.Numerics.Tensors" Version="10.0.0" />
<PackageReference Include="System.Numerics.Tensors" Version="10.0.10" />
</ItemGroup>

<!-- M.E.AI IChatClient adapter (Ai/Meai/DniChatClient.cs) over the engine's own ILanguageModel seam
— the foundation for a future on-device function-calling agent. Version pinned to the one
spike/MeaiGate proved AOT-clean (0 warnings); see docs/meai-nativeaot-findings.md. -->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="10.7.0" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="10.8.3" />
</ItemGroup>

<!-- Observability's logging leg (EngineLog + [LoggerMessage] events): Abstractions ONLY — the
Expand All @@ -28,12 +28,12 @@
ILogger (RingLogger) funnels records into the bounded ring the native UI drains. Proven AOT-clean
by spike/LogSinkHarness; see docs/logging-nativeaot-findings.md. -->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10" />
</ItemGroup>

<!-- On-device AI: all-MiniLM sentence encoder via ONNX Runtime + bundled model/vocab/corpus. -->
<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.20.1" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.28.0" />
<None Update="Ai/assets/model.onnx" CopyToOutputDirectory="PreserveNewest" />
<None Update="Ai/assets/vocab.txt" CopyToOutputDirectory="PreserveNewest" />
<None Update="Ai/assets/corpus.txt" CopyToOutputDirectory="PreserveNewest" />
Expand Down
Loading