-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCosmcs.csproj
29 lines (28 loc) · 1.21 KB
/
Cosmcs.csproj
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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Cosmcs</PackageId>
<Version>0.5.0</Version>
<Authors>lxgr</Authors>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageDescription>A C# client library for cosmos-sdk blockchains</PackageDescription>
<RepositoryUrl>https://github.com/decentralcardgame/cosmcs</RepositoryUrl>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CardanoBech32" Version="0.9.1"/>
<PackageReference Include="Cryptography.ECDSA.Secp256k1" Version="1.1.3"/>
<PackageReference Include="DevHawk.RIPEMD160" Version="3.0.27"/>
<PackageReference Include="Google.Protobuf" Version="3.23.3"/>
<PackageReference Include="Grpc.Core" Version="2.46.6"/>
<PackageReference Include="Grpc.Net.Client" Version="2.55.0"/>
</ItemGroup>
</Project>