-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
29 lines (24 loc) · 1.28 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
29 lines (24 loc) · 1.28 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>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<!-- NBitcoin Flavor: Standard (public NuGet) or Okeanos (internal fork) -->
<NBitcoinFlavor Condition="'$(NBitcoinFlavor)' == ''">Standard</NBitcoinFlavor>
<!-- Package ID based on flavor -->
<NBitcoinPackageId Condition="'$(NBitcoinFlavor)' == 'Okeanos'">Okeanos.NBitcoin</NBitcoinPackageId>
<NBitcoinPackageId Condition="'$(NBitcoinFlavor)' != 'Okeanos'">NBitcoin</NBitcoinPackageId>
</PropertyGroup>
<ItemGroup>
<!-- Standard NBitcoin from NuGet (default) -->
<PackageVersion Include="NBitcoin" Version="7.0.34" />
<!-- Serialization & Memory -->
<PackageVersion Include="System.Text.Json" Version="9.0.0" />
<PackageVersion Include="System.Memory" Version="4.6.0" />
<!-- Testing -->
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="xunit" Version="2.9.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="coverlet.msbuild" Version="6.0.2" />
</ItemGroup>
</Project>