Skip to content

Commit

Permalink
new NuGet 1.0.0 (#752)
Browse files Browse the repository at this point in the history
- removed LangVersion
- updated ExchangeSharpTests to net6.0
  • Loading branch information
vslee authored Mar 20, 2022
1 parent 469c2a4 commit 7a7aadc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail

#### dotnet CLI

[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.2`][nuget]
[`dotnet add package DigitalRuby.ExchangeSharp --version 1.0.0`][nuget]

#### Package Manager on VS

[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.9.2`][nuget]
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.0.0`][nuget]

### Examples

Expand Down
1 change: 0 additions & 1 deletion src/ExchangeSharp.Forms/ExchangeSharp.Forms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<TargetFramework>net6.0-windows</TargetFramework>
<DefineConstants>HAS_WINDOWS_FORMS</DefineConstants>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>8</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

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.9.2</PackageVersion>
<PackageVersion>1.0.0</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.9.2")]
[assembly: AssemblyFileVersion("0.9.2")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: InternalsVisibleTo("ExchangeSharpTests")]
5 changes: 2 additions & 3 deletions src/ExchangeSharpConsole/ExchangeSharpConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
<AssemblyName>exchange-sharp</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>8</LangVersion>
<AssemblyVersion>0.9.2</AssemblyVersion>
<FileVersion>0.9.2</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 3 additions & 4 deletions tests/ExchangeSharpTests/ExchangeSharpTests.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>8</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>0.9.2</AssemblyVersion>
<FileVersion>0.9.2</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>

Expand Down

0 comments on commit 7a7aadc

Please sign in to comment.