Skip to content

Commit 2e68817

Browse files
authored
new NuGet 1.2.0 (#860)
1 parent 7e75ba2 commit 2e68817

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail
114114

115115
#### dotnet CLI
116116

117-
[`dotnet add package DigitalRuby.ExchangeSharp --version 1.1.1`][nuget]
117+
[`dotnet add package DigitalRuby.ExchangeSharp --version 1.2.0`][nuget]
118118

119119
#### Package Manager on VS
120120

121-
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.1.1`][nuget]
121+
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.2.0`][nuget]
122122

123123
### Examples
124124

src/ExchangeSharp/ExchangeSharp.csproj

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@
1919
<Product>IPBan</Product>
2020
<PackageReadmeFile>README.md</PackageReadmeFile>
2121
<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>
22+
<VersionPrefix>1.2.0</VersionPrefix>
2223
<RepositoryUrl>https://github.com/DigitalRuby/ExchangeSharp</RepositoryUrl>
2324
<RepositoryType>git</RepositoryType>
2425
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
25-
<IncludeSymbols>true</IncludeSymbols>
26-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
27-
<!--Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)-->
26+
<!--Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)-->
2827
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2928
<!--Embed source files that are not tracked by the source control manager in the PDB-->
3029
<EmbedUntrackedSources>true</EmbedUntrackedSources>
30+
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
31+
<DebugType>embedded</DebugType>
3132
</PropertyGroup>
3233

3334
<ItemGroup>
@@ -43,12 +44,13 @@
4344
<PrivateAssets>all</PrivateAssets>
4445
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4546
</PackageReference>
46-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
4747
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
4848
<PackageReference Include="NLog" Version="5.3.4" />
4949
<PackageReference Include="SocketIOClient" Version="3.1.2" />
5050
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
5151
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" />
52+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
53+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4" PrivateAssets="All"/>
5254
</ItemGroup>
5355

5456
<ItemGroup>

src/ExchangeSharpConsole/ExchangeSharpConsole.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<AssemblyName>exchange-sharp</AssemblyName>
66
<TargetFramework>net9.0</TargetFramework>
77
<NeutralLanguage>en</NeutralLanguage>
8-
<AssemblyVersion>1.1.1</AssemblyVersion>
9-
<FileVersion>1.1.1</FileVersion>
8+
<AssemblyVersion>1.2.0</AssemblyVersion>
9+
<FileVersion>1.2.0</FileVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

tests/ExchangeSharpTests/ExchangeSharpTests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<NeutralLanguage>en</NeutralLanguage>
7-
<AssemblyVersion>1.1.1</AssemblyVersion>
8-
<FileVersion>1.1.1</FileVersion>
7+
<AssemblyVersion>1.2.0</AssemblyVersion>
8+
<FileVersion>1.2.0</FileVersion>
99
<NoWin32Manifest>true</NoWin32Manifest>
1010
</PropertyGroup>
1111

0 commit comments

Comments
 (0)