-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
37 lines (35 loc) · 1.98 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
37 lines (35 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<!-- Promotes transitive packages listed below to the pinned version —
needed to lift SQLitePCLRaw above the vulnerable 2.1.11 that
Microsoft.EntityFrameworkCore.Sqlite 10.0.8 brings in
(GHSA-2m69-gcr7-jv3q, NU1903 fails the lint build). -->
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<!-- Production dependencies -->
<ItemGroup>
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.8" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.8" />
<PackageVersion Include="Microsoft.Extensions.AI" Version="10.6.0" />
<PackageVersion Include="Microsoft.Extensions.AI.OpenAI" Version="10.6.0" />
<PackageVersion Include="Anthropic" Version="12.26.0" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3" Version="3.53.3" />
</ItemGroup>
<!-- Test dependencies -->
<ItemGroup>
<PackageVersion Include="xunit.v3" Version="3.2.2" />
<PackageVersion Include="xunit.analyzers" Version="1.27.0" />
<PackageVersion Include="AwesomeAssertions" Version="9.4.0" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="Testcontainers.PostgreSql" Version="4.12.0" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.2" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.Testing" Version="10.6.0" />
<PackageVersion Include="Respawn" Version="7.0.0" />
<PackageVersion Include="Microsoft.Playwright" Version="1.60.0" />
<!-- 17.x targets MTP 1.x to match xunit.v3 3.2.2 (xunit.v3.mtp-v1).
18.x wants MTP 2.x → TypeLoadException: IDataConsumer. -->
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.14.2" />
</ItemGroup>
</Project>