-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
62 lines (59 loc) · 4.02 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
62 lines (59 loc) · 4.02 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.10.91"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Configuration.CommandLine" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.10"/>
<PackageVersion Include="Microsoft.Extensions.Primitives" Version="10.0.10"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0"/>
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0"/>
<PackageVersion Include="PolySharp" Version="1.16.0"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.Azure.Relay" Version="3.1.1"/>
<PackageVersion Include="SSH.NET" Version="2026.0.0"/>
<!-- The mediator integration takes the published package rather than a project reference:
this repo ships the HTTP-server side of it, and the mediator itself is versioned and
released independently. -->
<PackageVersion Include="Shiny.Mediator" Version="6.8.0"/>
<PackageVersion Include="ModelContextProtocol" Version="2.1.0"/>
<!-- Same arrangement as the mediator: this repo ships the HTTP-server side of DocumentDb and
the engine is versioned and released on its own. 13.2.1 is the floor — it is the first
release carrying the public Shiny.DocumentDb.Hosting surface (DocumentPredicate /
DocumentFilter / DocumentStoreAccessor) that the endpoints evaluate a request scope with,
so an earlier one would not compile. The SQLite provider is test-only and must stay in
lockstep, because a provider compiled against a different engine build is a runtime
mismatch rather than a build error. -->
<PackageVersion Include="Shiny.DocumentDb" Version="13.2.1"/>
<PackageVersion Include="Shiny.DocumentDb.Sqlite" Version="13.2.1"/>
<!-- Test-only. The gRPC tests call the server with the real gRPC client rather than a
hand-rolled one, because "our framing agrees with itself" is not the claim being
tested. Nothing that ships depends on it. -->
<PackageVersion Include="Grpc.Net.Client" Version="2.83.0"/>
</ItemGroup>
<ItemGroup>
<PackageVersion Include="xunit.v3" Version="3.2.2"/>
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.0.0"/>
<!-- Keep in lockstep with the Microsoft.Testing.Platform version xunit.v3 resolves (1.9.1).
This is the package that decides it: everything else in the platform arrives
transitively at xunit's version, and a trx writer from a newer line drags the platform
assembly up with it while xunit's adapter stays compiled against the old one. The
result is a MissingMethodException on the first line of output, before any test runs. -->
<PackageVersion Include="Microsoft.Testing.Extensions.TrxReport" Version="1.9.1"/>
</ItemGroup>
</Project>