Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new NuGet 0.7.1 #526

Merged
merged 1 commit into from
Mar 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail
### Nuget

#### dotnet CLI
[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.0`][nuget]
[`dotnet add package DigitalRuby.ExchangeSharp --version 0.7.1`][nuget]

#### Package Manager on VS
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.7.0`][nuget]
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.7.1`][nuget]

### Examples

Expand Down
4 changes: 1 addition & 3 deletions src/ExchangeSharp.Forms/ExchangeSharp.Forms.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<DefineConstants>HAS_WINDOWS_FORMS</DefineConstants>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>8</LangVersion>
<AssemblyVersion>0.7.0</AssemblyVersion>
<FileVersion>0.7.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ExchangeSharp/ExchangeSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<LangVersion>8</LangVersion>
<PackageId>DigitalRuby.ExchangeSharp</PackageId>
<Title>ExchangeSharp - C# API for cryptocurrency exchanges</Title>
<PackageVersion>0.7.0</PackageVersion>
<PackageVersion>0.7.1</PackageVersion>
<Authors>jjxtra</Authors>
<Description>ExchangeSharp is a C# API for working with various cryptocurrency exchanges. Web sockets are also supported for some exchanges.</Description>
<Summary>Supported exchanges: Binance BitMEX Bitfinex Bithumb Bitstamp Bittrex BL3P Bleutrade BTSE Cryptopia Coinbase(GDAX) Digifinex Gemini Gitbtc Huobi Kraken Kucoin Livecoin NDAX OKCoin OKEx Poloniex TuxExchange Yobit ZBcom. Pull requests welcome.</Summary>
Expand Down
4 changes: 2 additions & 2 deletions src/ExchangeSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.7.0")]
[assembly: AssemblyFileVersion("0.7.0")]
[assembly: AssemblyVersion("0.7.1")]
[assembly: AssemblyFileVersion("0.7.1")]
[assembly: InternalsVisibleTo("ExchangeSharpTests")]
4 changes: 2 additions & 2 deletions src/ExchangeSharpConsole/ExchangeSharpConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<TargetFramework>netcoreapp3.0</TargetFramework>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>8</LangVersion>
<AssemblyVersion>0.7.0</AssemblyVersion>
<FileVersion>0.7.0</FileVersion>
<AssemblyVersion>0.7.1</AssemblyVersion>
<FileVersion>0.7.1</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions tests/ExchangeSharpTests/ExchangeSharpTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<IsPackable>false</IsPackable>
<LangVersion>8</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>0.7.0</AssemblyVersion>
<FileVersion>0.7.0</FileVersion>
<AssemblyVersion>0.7.1</AssemblyVersion>
<FileVersion>0.7.1</FileVersion>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>

Expand Down
3 changes: 2 additions & 1 deletion tests/ExchangeSharpTests/ExchangeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public async Task GlobalSymbolTest()
{
if (api is ExchangeUfoDexAPI || api is ExchangeOKExAPI || api is ExchangeHitBTCAPI || api is ExchangeKuCoinAPI ||
api is ExchangeOKCoinAPI || api is ExchangeDigifinexAPI || api is ExchangeNDAXAPI || api is ExchangeBL3PAPI ||
api is ExchangeBinanceUSAPI || api is ExchangeBinanceJerseyAPI || api is ExchangeBinanceDEXAPI || api is ExchangeBitMEXAPI)
api is ExchangeBinanceUSAPI || api is ExchangeBinanceJerseyAPI || api is ExchangeBinanceDEXAPI ||
api is ExchangeBitMEXAPI || api is ExchangeBTSEAPI)
{
// WIP
continue;
Expand Down