Skip to content

Commit 0eb8d8e

Browse files
authored
Merge pull request #5 from codez0mb1e/features/migrate-to-newdonetcore
Migrate to .NET 5.0
2 parents 26a2058 + de09066 commit 0eb8d8e

4 files changed

Lines changed: 13 additions & 12 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Market Bot for Binance Exchange
22

3-
_Naive Market Maker Bot for Binance._
3+
Naive _Market Maker Bot_ for Binance.
44

55
Solution contains two console projects:
6-
- The `BinanceBot.MarketViewer.Console` project demonstrates Order Book updating in near-real time (via _Binance WebSocket API_).
7-
- The `BinanceBot.MarketBot.Console` project demonstrates how BinanceBot create and cancel orders (via _Binance REST API_) depends on current Market Depth.
6+
7+
- The `BinanceBot.MarketViewer.Console` project: __Order book updating in near-real time__ (via _Binance WebSocket API_).
8+
- The `BinanceBot.MarketBot.Console` project: __create and cancel orders)) (via _Binance REST API_) depends on current Market Depth.
89

910
Most of the `BinanceDotNet.BinanceExchange.API` project was taken from BinanceDotNet project [[2](#references)], but BinanceBot solution is not a branch of BinanceDotNet project.
1011

@@ -42,7 +43,7 @@ The solution doesn’t contain any `Unit Tests`/`Integration Tests`, which is a
4243

4344
## Requirements
4445

45-
- .NET Core 3.1.
46+
- .NET Core 5.0.
4647

4748

4849
## References

src/BinanceBot.MarketBot.Console/BinanceBot.MarketBot.Console.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<Version>0.2.0</Version>
77
<Authors>Dmitry Petukhov</Authors>
88
<Product>BinanceBot</Product>
@@ -16,8 +16,8 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="NLog" Version="4.7.5" />
20-
<PackageReference Include="NLog.Config" Version="4.7.5" />
19+
<PackageReference Include="NLog" Version="4.7.10" />
20+
<PackageReference Include="NLog.Config" Version="4.7.10" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/BinanceBot.MarketViewer.Console/BinanceBot.MarketViewer.Console.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<Version>0.2.0</Version>
77
<Authors>Dmitry Petukhov</Authors>
88
<Product>BinanceBot</Product>
@@ -16,8 +16,8 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="NLog" Version="4.7.5" />
20-
<PackageReference Include="NLog.Config" Version="4.7.5" />
19+
<PackageReference Include="NLog" Version="4.7.10" />
20+
<PackageReference Include="NLog.Config" Version="4.7.10" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/BinanceDotNet.BinanceExchange.API/BinanceDotNet.BinanceExchange.API.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
10-
<PackageReference Include="NLog" Version="4.7.5" />
9+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
10+
<PackageReference Include="NLog" Version="4.7.10" />
1111
<PackageReference Include="System.Net.Http" Version="4.3.4" />
1212
<PackageReference Include="WebSocketSharp-netstandard" Version="1.0.1" />
1313
</ItemGroup>

0 commit comments

Comments
 (0)