From e3fc1e2192e77de5a7a4fa520ff40afbab2349e2 Mon Sep 17 00:00:00 2001 From: Victor Lee <dev-github@vslee.com> Date: Tue, 26 Nov 2024 20:06:23 -0800 Subject: [PATCH] new NuGet 1.2.0 --- README.md | 4 ++-- src/ExchangeSharp/ExchangeSharp.csproj | 10 ++++++---- src/ExchangeSharpConsole/ExchangeSharpConsole.csproj | 4 ++-- tests/ExchangeSharpTests/ExchangeSharpTests.csproj | 4 ++-- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffe487b2..950566cf 100644 --- a/README.md +++ b/README.md @@ -114,11 +114,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail #### dotnet CLI -[`dotnet add package DigitalRuby.ExchangeSharp --version 1.1.1`][nuget] +[`dotnet add package DigitalRuby.ExchangeSharp --version 1.2.0`][nuget] #### Package Manager on VS -[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.1.1`][nuget] +[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.2.0`][nuget] ### Examples diff --git a/src/ExchangeSharp/ExchangeSharp.csproj b/src/ExchangeSharp/ExchangeSharp.csproj index cbb8b383..9ab205e4 100644 --- a/src/ExchangeSharp/ExchangeSharp.csproj +++ b/src/ExchangeSharp/ExchangeSharp.csproj @@ -19,15 +19,16 @@ <Product>IPBan</Product> <PackageReadmeFile>README.md</PackageReadmeFile> <PackageTags>C# crypto cryptocurrency trade trader exchange sharp socket web socket websocket signalr secure API 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</PackageTags> + <VersionPrefix>1.2.0</VersionPrefix> <RepositoryUrl>https://github.com/DigitalRuby/ExchangeSharp</RepositoryUrl> <RepositoryType>git</RepositoryType> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> - <IncludeSymbols>true</IncludeSymbols> - <SymbolPackageFormat>snupkg</SymbolPackageFormat> - <!--Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)--> + <!--Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)--> <PublishRepositoryUrl>true</PublishRepositoryUrl> <!--Embed source files that are not tracked by the source control manager in the PDB--> <EmbedUntrackedSources>true</EmbedUntrackedSources> + <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) --> + <DebugType>embedded</DebugType> </PropertyGroup> <ItemGroup> @@ -43,12 +44,13 @@ <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="NLog" Version="5.3.4" /> <PackageReference Include="SocketIOClient" Version="3.1.2" /> <PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" /> <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" /> + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> + <PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4" PrivateAssets="All"/> </ItemGroup> <ItemGroup> diff --git a/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj b/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj index 87b228be..726d8a99 100644 --- a/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj +++ b/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj @@ -5,8 +5,8 @@ <AssemblyName>exchange-sharp</AssemblyName> <TargetFramework>net9.0</TargetFramework> <NeutralLanguage>en</NeutralLanguage> - <AssemblyVersion>1.1.1</AssemblyVersion> - <FileVersion>1.1.1</FileVersion> + <AssemblyVersion>1.2.0</AssemblyVersion> + <FileVersion>1.2.0</FileVersion> </PropertyGroup> <ItemGroup> diff --git a/tests/ExchangeSharpTests/ExchangeSharpTests.csproj b/tests/ExchangeSharpTests/ExchangeSharpTests.csproj index 8867b211..7204e844 100644 --- a/tests/ExchangeSharpTests/ExchangeSharpTests.csproj +++ b/tests/ExchangeSharpTests/ExchangeSharpTests.csproj @@ -4,8 +4,8 @@ <TargetFramework>net8.0</TargetFramework> <IsPackable>false</IsPackable> <NeutralLanguage>en</NeutralLanguage> - <AssemblyVersion>1.1.1</AssemblyVersion> - <FileVersion>1.1.1</FileVersion> + <AssemblyVersion>1.2.0</AssemblyVersion> + <FileVersion>1.2.0</FileVersion> <NoWin32Manifest>true</NoWin32Manifest> </PropertyGroup>