Skip to content

Commit 8a1080d

Browse files
committed
fixed incorrect NBitcoin version
1 parent 43ed868 commit 8a1080d

1 file changed

Lines changed: 36 additions & 42 deletions

File tree

BlockIo/BlockIo.csproj

Lines changed: 36 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,36 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<Company>Block.io, Inc.</Company>
5-
<Authors>Block.io, Inc.</Authors>
6-
<Copyright>Copyright 2021, Block.io, Inc.</Copyright>
7-
<Description>The C# Block.io SDK</Description>
8-
<PackageTags>block.io,wallet,sdk,bitcoin,litecoin,dogecoin</PackageTags>
9-
<PackageProjectUrl>https://github.com/BlockIo/block_io-csharp</PackageProjectUrl>
10-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11-
<RepositoryUrl>https://github.com/BlockIo/block_io-csharp</RepositoryUrl>
12-
<RepositoryType>git</RepositoryType>
13-
</PropertyGroup>
14-
15-
<PropertyGroup>
16-
<Version Condition=" '$(Version)' == '' ">2.0.3</Version>
17-
<LangVersion>8.0</LangVersion>
18-
</PropertyGroup>
19-
20-
<PropertyGroup>
21-
<OutputType>Library</OutputType>
22-
<TargetFramework>netcoreapp3.1</TargetFramework>
23-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
24-
</PropertyGroup>
25-
26-
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
27-
<DebugType>portable</DebugType>
28-
<Optimize>true</Optimize>
29-
<DocumentationFile>bin\Release\BlockIo.XML</DocumentationFile>
30-
</PropertyGroup>
31-
32-
<ItemGroup>
33-
<PackageReference Include="Base58Check" Version="0.2.0" />
34-
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="3.1.7" />
35-
<PackageReference Include="NBitcoin" Version="5.0.77" />
36-
<PackageReference Include="RestSharp" Version="106.12.0" />
37-
</ItemGroup>
38-
39-
<ItemGroup>
40-
<Compile Remove="Program.cs" />
41-
</ItemGroup>
42-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<Company>Block.io, Inc.</Company>
4+
<Authors>Block.io, Inc.</Authors>
5+
<Copyright>Copyright 2021, Block.io, Inc.</Copyright>
6+
<Description>The C# Block.io SDK</Description>
7+
<PackageTags>block.io,wallet,sdk,bitcoin,litecoin,dogecoin</PackageTags>
8+
<PackageProjectUrl>https://github.com/BlockIo/block_io-csharp</PackageProjectUrl>
9+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
10+
<RepositoryUrl>https://github.com/BlockIo/block_io-csharp</RepositoryUrl>
11+
<RepositoryType>git</RepositoryType>
12+
</PropertyGroup>
13+
<PropertyGroup>
14+
<Version Condition=" '$(Version)' == '' ">2.0.3</Version>
15+
<LangVersion>8.0</LangVersion>
16+
</PropertyGroup>
17+
<PropertyGroup>
18+
<OutputType>Library</OutputType>
19+
<TargetFramework>netcoreapp3.1</TargetFramework>
20+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
21+
</PropertyGroup>
22+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
23+
<DebugType>portable</DebugType>
24+
<Optimize>true</Optimize>
25+
<DocumentationFile>bin\Release\BlockIo.XML</DocumentationFile>
26+
</PropertyGroup>
27+
<ItemGroup>
28+
<PackageReference Include="Base58Check" Version="0.2.0"/>
29+
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="3.1.7"/>
30+
<PackageReference Include="NBitcoin" Version="6.0.10"/>
31+
<PackageReference Include="RestSharp" Version="106.12.0"/>
32+
</ItemGroup>
33+
<ItemGroup>
34+
<Compile Remove="Program.cs"/>
35+
</ItemGroup>
36+
</Project>

0 commit comments

Comments
 (0)