-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxuper-sdk-csharp.csproj
More file actions
35 lines (30 loc) · 1.38 KB
/
xuper-sdk-csharp.csproj
File metadata and controls
35 lines (30 loc) · 1.38 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
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RootNamespace>XuperSDK</RootNamespace>
<!--Nuget properties-->
<PackageId>XuperSDK</PackageId>
<PackageDescription>The C# SDK for XuperChain/XuperUnion. You can get more help info from the github page.</PackageDescription>
<Title>XuperSDK Pre-Release</Title>
<Version>0.1.3</Version>
<Authors>LaZYuc</Authors>
<Company>XuperChain</Company>
<RepositoryUrl>https://github.com/xuperchain/xuper-sdk-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.10.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.23.2" />
<PackageReference Include="Grpc.Tools" Version="2.24.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="pb\xchain.proto" GrpcServices="Client" />
</ItemGroup>
</Project>