-
Notifications
You must be signed in to change notification settings - Fork 1
/
WavesCS.Core.csproj
37 lines (31 loc) · 1.05 KB
/
WavesCS.Core.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
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>yusufsina</Authors>
<Description>Waves Blockchain integration for .Net Core applications</Description>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\SeedWords.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\SeedWords.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="PCLCrypto" Version="2.0.147" />
</ItemGroup>
<ItemGroup>
<Reference Include="Blake2Sharp">
<HintPath>lib\net451\Blake2Sharp.dll</HintPath>
</Reference>
<Reference Include="curve25519">
<HintPath>lib\net451\curve25519.dll</HintPath>
</Reference>
<Reference Include="HashLib">
<HintPath>lib\net451\HashLib.dll</HintPath>
</Reference>
</ItemGroup>
</Project>