-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCryptoTickerBot.Core.csproj
28 lines (23 loc) · 1.1 KB
/
CryptoTickerBot.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flurl" Version="3.0.2" />
<PackageReference Include="Flurl.Http" Version="2.4.0" />
<PackageReference Include="GDAX.Api.ClientLibrary" Version="1.0.26" />
<PackageReference Include="Nito.AsyncEx" Version="5.0.0-pre-05" />
<PackageReference Include="PurePusherClient" Version="1.1.0" />
<PackageReference Include="PureWebSockets" Version="2.3.0" />
<PackageReference Include="System.Reactive" Version="4.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CryptoTickerBot.Arbitrage\CryptoTickerBot.Arbitrage.csproj" />
<ProjectReference Include="..\CryptoTickerBot.Collections\CryptoTickerBot.Collections.csproj" />
<ProjectReference Include="..\CryptoTickerBot.Data\CryptoTickerBot.Data.csproj" />
</ItemGroup>
</Project>