-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibSimba.Net.csproj
More file actions
57 lines (51 loc) · 2.43 KB
/
libSimba.Net.csproj
File metadata and controls
57 lines (51 loc) · 2.43 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DefaultFrameworksUnitySupport>netstandard2.0;netcoreapp2.0;net461</DefaultFrameworksUnitySupport>
<DefaultFrameworks>netstandard2.0;netcoreapp2.0;net461</DefaultFrameworks>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp2.0;net461</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon />
<Win32Resource />
<Company>SIMBAChain Inc.</Company>
<Product>libSimba.Net</Product>
<PackageProjectUrl>https://simbachain.github.io/libsimba.net/</PackageProjectUrl>
<RepositoryUrl>https://github.com/simbachain/libsimba.net/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>SIMBAChain Inc.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<tags>Simbachain Blockchain Ethereum Stellar</tags>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>libsimba.net is a library simplifying the use of SIMBAChain APIs. We aim to abstract away the various blockchain concepts, reducing the necessary time needed to get to working code.</Description>
<PackageIcon>SIMBA-S_w.png</PackageIcon>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nethereum.Accounts" Version="3.4.0" />
<PackageReference Include="Nethereum.Hex" Version="3.4.0" />
<PackageReference Include="Nethereum.KeyStore" Version="3.4.0" />
<PackageReference Include="Nethereum.RLP" Version="3.4.0" />
<PackageReference Include="Nethereum.Signer" Version="3.4.0" />
<PackageReference Include="Nethereum.Web3" Version="3.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="5.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
<Reference Include="System.Web" Version="4.0.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="images\SIMBA-S_w.png" Pack="true" PackagePath="" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>