16 lines
508 B
XML
Executable file
16 lines
508 B
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BitCoinSharp" Version="0.2.166.49" />
|
|
<PackageReference Include="NBitcoin" Version="7.0.22" />
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|