-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCryptoTickerBot.Data.csproj
33 lines (28 loc) · 1.21 KB
/
CryptoTickerBot.Data.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Enums.NET" Version="2.3.2" />
<PackageReference Include="Humanizer.Core" Version="2.5.16" />
<PackageReference Include="JetBrains.Annotations" Version="2018.2.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="morelinq" Version="3.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="NLog" Version="4.5.11" />
<PackageReference Include="NLog.Config" Version="4.5.11" />
<PackageReference Include="Polly" Version="6.1.2" />
<PackageReference Include="SharpRaven" Version="2.4.0" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
<PackageReference Include="Tababular" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NLog.Targets.Sentry\NLog.Targets.Sentry.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>