-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHitBTC.Net.csproj
More file actions
27 lines (27 loc) · 1.28 KB
/
HitBTC.Net.csproj
File metadata and controls
27 lines (27 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Version>1.0.8-beta</Version>
<Authors>Konstantin Ivanov</Authors>
<Company>Konstantin Ivanov</Company>
<Description>The simple API wrapper for world-wide crypto exchange HitBTC (based on API v2.0)</Description>
<PackageTags>hitbtc api exchange c# .net crypto</PackageTags>
<PackageProjectUrl>https://github.com/Exellion/HitBTC.Net</PackageProjectUrl>
<RepositoryUrl>https://github.com/Exellion/HitBTC.Net</RepositoryUrl>
<PackageReleaseNotes>- fix error serialization</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.0.8.0</AssemblyVersion>
<FileVersion>1.0.8.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="WebSocket4Net" Version="0.15.2" />
</ItemGroup>
</Project>