-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
29 lines (22 loc) · 1.05 KB
/
Directory.Packages.props
File metadata and controls
29 lines (22 loc) · 1.05 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
<Project>
<PropertyGroup>
<!-- Enable Central Package Management -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!-- Global packages applied to all projects -->
<ItemGroup>
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.7.112" PrivateAssets="all" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
<!-- Explicitly versioned packages -->
<ItemGroup>
<!-- CLI parsing (AOT-compatible, used by .NET CLI itself) -->
<PackageVersion Include="System.CommandLine" Version="2.0.2" />
<!-- JSON-RPC implementation (AOT-compatible with SystemTextJsonFormatter) -->
<PackageVersion Include="StreamJsonRpc" Version="2.22.23" />
<!-- Process execution (AOT-compatible) -->
<PackageVersion Include="CliWrap" Version="3.10.0" />
<!-- xUnit v3 testing framework (.NET 10 MTP - no runner packages needed) -->
<PackageVersion Include="xunit.v3" Version="3.2.2" />
</ItemGroup>
</Project>