-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBonsai.Observables.Blockchain.csproj
51 lines (44 loc) · 2.16 KB
/
Bonsai.Observables.Blockchain.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;</NoWarn>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HBitcoin" Version="0.1.8.2" />
<PackageReference Include="NBitcoin" Version="4.1.1.8" />
<PackageReference Include="NStratis" Version="4.0.0.54" />
<PackageReference Include="NStratis.API.Client" Version="0.0.2-alpha" />
<PackageReference Include="NStratis.API.Server" Version="0.0.2-alpha" />
<PackageReference Include="NStratis.HashLib" Version="1.0.0.1" />
<PackageReference Include="Stratis.Bitcoin" Version="1.1.2-beta" />
<PackageReference Include="System.Reactive" Version="4.0.0" />
<PackageReference Include="System.Reactive.Core" Version="4.0.0" />
<PackageReference Include="System.Reactive.Interfaces" Version="4.0.0" />
<PackageReference Include="System.Reactive.Linq" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Abacus.Cryptography\Abacus.Cryptography.csproj" />
<ProjectReference Include="..\Abacus.Extensions\Abacus.Extensions.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="QActive">
<HintPath>..\..\Qactive\QActive\bin\Debug\netstandard2.0\QActive.dll</HintPath>
</Reference>
<Reference Include="QActive.Expressions">
<HintPath>..\..\Qactive\QActive.Expressions\bin\Debug\netstandard2.0\QActive.Expressions.dll</HintPath>
</Reference>
<Reference Include="QActive.Providers.Streaming">
<HintPath>..\..\Qactive\QActive.Providers.Streaming\bin\Debug\netstandard2.0\QActive.Providers.Streaming.dll</HintPath>
</Reference>
<Reference Include="QActive.Providers.Tcp">
<HintPath>..\..\Qactive\QActive.Providers.Tcp\bin\Debug\netstandard2.0\QActive.Providers.Tcp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>