diff --git a/.gitignore b/.gitignore
index 43fe890..dad37f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
-## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
+## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
@@ -10,6 +10,8 @@
*.userosscache
*.sln.docstates
+nuget.config
+
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
@@ -23,7 +25,6 @@ mono_crash.*
[Rr]eleases/
x64/
x86/
-[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
@@ -62,9 +63,6 @@ project.lock.json
project.fragment.lock.json
artifacts/
-# ASP.NET Scaffolding
-ScaffoldingReadMe.txt
-
# StyleCop
StyleCopReport.xml
@@ -73,6 +71,7 @@ StyleCopReport.xml
*_p.c
*_h.h
*.ilk
+*.meta
*.obj
*.iobj
*.pch
@@ -89,7 +88,6 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
-*.tlog
*.vspscc
*.vssscc
.builds
@@ -141,11 +139,6 @@ _TeamCity*
.axoCover/*
!.axoCover/settings.json
-# Coverlet is a free, cross platform Code Coverage Tool
-coverage*.json
-coverage*.xml
-coverage*.info
-
# Visual Studio code coverage results
*.coverage
*.coveragexml
@@ -293,17 +286,6 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
-# Visual Studio 6 auto-generated project file (contains which files were open etc.)
-*.vbp
-
-# Visual Studio 6 workspace and project file (working project files containing files to include in project)
-*.dsw
-*.dsp
-
-# Visual Studio 6 technical files
-*.ncb
-*.aps
-
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
@@ -360,9 +342,6 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/
-# Visual Studio History (VSHistory) files
-.vshistory/
-
# BeatPulse healthcheck temp database
healthchecksdb
@@ -370,29 +349,4 @@ healthchecksdb
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
-.ionide/
-
-# Fody - auto-generated XML schema
-FodyWeavers.xsd
-
-# VS Code files for those working on multiple tools
-.vscode/*
-!.vscode/settings.json
-!.vscode/tasks.json
-!.vscode/launch.json
-!.vscode/extensions.json
-*.code-workspace
-
-# Local History for Visual Studio Code
-.history/
-
-# Windows Installer files from build outputs
-*.cab
-*.msi
-*.msix
-*.msm
-*.msp
-
-# JetBrains Rider
-*.sln.iml
-.idea
\ No newline at end of file
+.ionide/
\ No newline at end of file
diff --git a/.vs/bybit.net.api/DesignTimeBuild/.dtbcache.v2 b/.vs/bybit.net.api/DesignTimeBuild/.dtbcache.v2
deleted file mode 100644
index 72afd0c..0000000
Binary files a/.vs/bybit.net.api/DesignTimeBuild/.dtbcache.v2 and /dev/null differ
diff --git a/.vs/bybit.net.api/v16/.suo b/.vs/bybit.net.api/v16/.suo
deleted file mode 100644
index d5be928..0000000
Binary files a/.vs/bybit.net.api/v16/.suo and /dev/null differ
diff --git a/.vs/bybit.net.api/v17/.futdcache.v2 b/.vs/bybit.net.api/v17/.futdcache.v2
deleted file mode 100644
index 9bc393c..0000000
Binary files a/.vs/bybit.net.api/v17/.futdcache.v2 and /dev/null differ
diff --git a/.vs/bybit.net.api/v17/.suo b/.vs/bybit.net.api/v17/.suo
deleted file mode 100644
index 4da6241..0000000
Binary files a/.vs/bybit.net.api/v17/.suo and /dev/null differ
diff --git a/.vs/bybit.net.api/v17/TestStore/0/testlog.manifest b/.vs/bybit.net.api/v17/TestStore/0/testlog.manifest
deleted file mode 100644
index 390fdd6..0000000
Binary files a/.vs/bybit.net.api/v17/TestStore/0/testlog.manifest and /dev/null differ
diff --git a/Examples/bybit.api.console/Program.cs b/Examples/bybit.api.console/Program.cs
index 5af85b0..1e02b30 100644
--- a/Examples/bybit.api.console/Program.cs
+++ b/Examples/bybit.api.console/Program.cs
@@ -7,52 +7,59 @@
using bybit.net.api.WebSocketStream;
-//BybitMarketDataService market = new(url: BybitConstants.HTTP_TESTNET_URL, debugMode: true);
-//var klineInfo = await market.GetMarketKline(Category.SPOT, "BTCUSDT", MarketInterval.OneMinute, limit: 3);
-//Console.WriteLine(klineInfo);
-//var klinePriceInfo = await market.GetMarKPricetKline(Category.LINEAR, "BTCUSDT", MarketInterval.OneMinute);
-//Console.WriteLine(klinePriceInfo);
-
-//var spotWebsocket = new BybitSpotWebSocket(true);
-//spotWebsocket.OnMessageReceived(
-// (data) =>
-// {
-// Console.WriteLine(data);
-
-// return Task.CompletedTask;
-// }, CancellationToken.None);
-
-//await spotWebsocket.ConnectAsync(new string[] { "orderbook.50.BTCUSDT" }, CancellationToken.None);
-
-
-//var linearWebsocket = new BybitLinearWebSocket(true);
-//linearWebsocket.OnMessageReceived(
-// (data) =>
-// {
-// Console.WriteLine(data);
-// return Task.CompletedTask;
-// }, CancellationToken.None);
-//await linearWebsocket.ConnectAsync(new string[] { "publicTrade.BTCUSDT" }, CancellationToken.None);
-
-//var privateWebsocket = new BybitPrivateWebsocket(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", useTestNet: true, debugMode: true);
-//privateWebsocket.OnMessageReceived(
-// (data) =>
-// {
-// Console.WriteLine(data);
-// return Task.CompletedTask;
-// }, CancellationToken.None);
-//await privateWebsocket.ConnectAsync(new string[] { "order" }, CancellationToken.None);
-
-//BybitTradeService tradeService = new(apiKey: "xxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx");
-//var orderInfo = await tradeService.PlaceOrder(category: Category.LINEAR, symbol: "BLZUSDT", side: Side.BUY, orderType: OrderType.MARKET, qty: "15", timeInForce: TimeInForce.GTC);
-//Console.WriteLine(orderInfo);
-
-//BybitPositionService positionService = new(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", BybitConstants.HTTP_TESTNET_URL);
-//var positionInfo = await positionService.GetPositionInfo(category: Category.LINEAR, symbol: "BLZUSDT");
-//Console.WriteLine(positionInfo);
-
-//BybitAccountService accountService = new(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", url: BybitConstants.HTTP_TESTNET_URL);
-//var accountInfo = await accountService.GetAccountBalance(accountType: AccountType.Unified, coin: "USDT");
-//Console.WriteLine(accountInfo);
-
-//Console.ReadLine();
+public class Program
+{
+ public static async Task Main(string[] args)
+ {
+ BybitMarketDataService market = new(url: BybitConstants.HTTP_TESTNET_URL, debugMode: true);
+ var klineInfo = await market.GetMarketKline(Category.SPOT, "BTCUSDT", MarketInterval.OneMinute, limit: 3);
+ Console.WriteLine(klineInfo);
+ var klinePriceInfo = await market.GetMarkPriceKline(Category.LINEAR, "BTCUSDT", MarketInterval.OneMinute);
+ Console.WriteLine(klinePriceInfo);
+
+ var spotWebsocket = new BybitSpotWebSocket(true);
+ spotWebsocket.OnMessageReceived(
+ (data) =>
+ {
+ Console.WriteLine(data);
+
+ return Task.CompletedTask;
+ }, CancellationToken.None);
+
+ await spotWebsocket.ConnectAsync(new string[] { "orderbook.50.BTCUSDT" }, CancellationToken.None);
+
+
+ var linearWebsocket = new BybitLinearWebSocket(true);
+ linearWebsocket.OnMessageReceived(
+ (data) =>
+ {
+ Console.WriteLine(data);
+ return Task.CompletedTask;
+ }, CancellationToken.None);
+ await linearWebsocket.ConnectAsync(new string[] { "publicTrade.BTCUSDT" }, CancellationToken.None);
+
+ var privateWebsocket = new BybitPrivateWebsocket(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", useTestNet: true, debugMode: true);
+ privateWebsocket.OnMessageReceived(
+ (data) =>
+ {
+ Console.WriteLine(data);
+ return Task.CompletedTask;
+ }, CancellationToken.None);
+ await privateWebsocket.ConnectAsync(new string[] { "order" }, CancellationToken.None);
+
+ BybitTradeService tradeService = new(apiKey: "xxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx");
+ var orderInfo = await tradeService.PlaceOrder(category: Category.LINEAR, symbol: "BLZUSDT", side: Side.BUY, orderType: OrderType.MARKET, qty: "15", timeInForce: TimeInForce.GTC);
+ Console.WriteLine(orderInfo);
+
+ BybitPositionService positionService = new(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", BybitConstants.HTTP_TESTNET_URL);
+ var positionInfo = await positionService.GetPositionInfo(category: Category.LINEAR, symbol: "BLZUSDT");
+ Console.WriteLine(positionInfo);
+
+ BybitAccountService accountService = new(apiKey: "xxxxxxxxxxxxxxxxxxxxx", apiSecret: "xxxxxxxxxxxxxxxxxxxxx", url: BybitConstants.HTTP_TESTNET_URL);
+ var accountInfo = await accountService.GetAccountBalance(accountType: AccountType.Unified, coin: "USDT");
+ Console.WriteLine(accountInfo);
+
+ Console.ReadLine();
+
+ }
+}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index 11e5f2e..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 2c64257..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index 03edd8f..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index c53f5d2..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
deleted file mode 100644
index 3987d66..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index 081abea..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/Newtonsoft.Json.dll b/Examples/bybit.api.console/bin/Debug/net6.0/Newtonsoft.Json.dll
deleted file mode 100644
index d035c38..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.deps.json b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.deps.json
deleted file mode 100644
index 4e57404..0000000
--- a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.deps.json
+++ /dev/null
@@ -1,924 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v6.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v6.0": {
- "bybit.api.console/1.0.0": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "System.Net.Http": "4.3.4",
- "System.Text.RegularExpressions": "4.3.1",
- "bybit.net.api": "1.0.9"
- },
- "runtime": {
- "bybit.api.console.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.1": {},
- "Microsoft.NETCore.Targets/1.1.3": {},
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Threading": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.1"
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Net.Http/4.3.4": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime/4.3.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Text.RegularExpressions/4.3.1": {
- "dependencies": {
- "System.Runtime": "4.3.1"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.1",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "bybit.net.api/1.0.9": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "7.0.0",
- "Newtonsoft.Json": "13.0.3",
- "System.Net.Http": "4.3.4",
- "System.Text.RegularExpressions": "4.3.1"
- },
- "runtime": {
- "bybit.net.api.dll": {
- "assemblyVersion": "1.0.9",
- "fileVersion": "1.1.0"
- }
- }
- }
- }
- },
- "libraries": {
- "bybit.api.console/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
- "path": "microsoft.extensions.dependencyinjection/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
- "path": "microsoft.extensions.logging/7.0.0",
- "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
- "path": "microsoft.extensions.logging.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
- "path": "microsoft.extensions.options/7.0.0",
- "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
- "path": "microsoft.extensions.primitives/7.0.0",
- "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
- "path": "microsoft.netcore.platforms/1.1.1",
- "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
- "path": "microsoft.netcore.targets/1.1.3",
- "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Net.Http/4.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
- "path": "system.net.http/4.3.4",
- "hashPath": "system.net.http.4.3.4.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
- "path": "system.runtime/4.3.1",
- "hashPath": "system.runtime.4.3.1.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "path": "system.security.cryptography.cng/4.3.0",
- "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==",
- "path": "system.text.regularexpressions/4.3.1",
- "hashPath": "system.text.regularexpressions.4.3.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "bybit.net.api/1.0.9": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.dll b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.dll
deleted file mode 100644
index 10662f1..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.exe b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.exe
deleted file mode 100644
index fb7e2f5..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.exe and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.pdb b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.pdb
deleted file mode 100644
index de06b16..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.runtimeconfig.json b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.runtimeconfig.json
deleted file mode 100644
index 4e96a56..0000000
--- a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.api.console.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net6.0",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "6.0.0"
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.dll b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.dll
deleted file mode 100644
index 493e909..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.pdb b/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.pdb
deleted file mode 100644
index bddd76b..0000000
Binary files a/Examples/bybit.api.console/bin/Debug/net6.0/bybit.net.api.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index 11e5f2e..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 2c64257..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index 03edd8f..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index c53f5d2..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Options.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Options.dll
deleted file mode 100644
index 3987d66..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Primitives.dll b/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index 081abea..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/Newtonsoft.Json.dll b/Examples/bybit.api.console/bin/Release/net6.0/Newtonsoft.Json.dll
deleted file mode 100644
index d035c38..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.deps.json b/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.deps.json
deleted file mode 100644
index 4e57404..0000000
--- a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.deps.json
+++ /dev/null
@@ -1,924 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v6.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v6.0": {
- "bybit.api.console/1.0.0": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "System.Net.Http": "4.3.4",
- "System.Text.RegularExpressions": "4.3.1",
- "bybit.net.api": "1.0.9"
- },
- "runtime": {
- "bybit.api.console.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.1": {},
- "Microsoft.NETCore.Targets/1.1.3": {},
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Threading": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.1"
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Net.Http/4.3.4": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime/4.3.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.1",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "System.Text.RegularExpressions/4.3.1": {
- "dependencies": {
- "System.Runtime": "4.3.1"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.1",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3",
- "System.Runtime": "4.3.1"
- }
- },
- "bybit.net.api/1.0.9": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "7.0.0",
- "Newtonsoft.Json": "13.0.3",
- "System.Net.Http": "4.3.4",
- "System.Text.RegularExpressions": "4.3.1"
- },
- "runtime": {
- "bybit.net.api.dll": {
- "assemblyVersion": "1.0.9",
- "fileVersion": "1.1.0"
- }
- }
- }
- }
- },
- "libraries": {
- "bybit.api.console/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
- "path": "microsoft.extensions.dependencyinjection/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
- "path": "microsoft.extensions.logging/7.0.0",
- "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
- "path": "microsoft.extensions.logging.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
- "path": "microsoft.extensions.options/7.0.0",
- "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
- "path": "microsoft.extensions.primitives/7.0.0",
- "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
- "path": "microsoft.netcore.platforms/1.1.1",
- "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
- "path": "microsoft.netcore.targets/1.1.3",
- "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Net.Http/4.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
- "path": "system.net.http/4.3.4",
- "hashPath": "system.net.http.4.3.4.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
- "path": "system.runtime/4.3.1",
- "hashPath": "system.runtime.4.3.1.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "path": "system.security.cryptography.cng/4.3.0",
- "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==",
- "path": "system.text.regularexpressions/4.3.1",
- "hashPath": "system.text.regularexpressions.4.3.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "bybit.net.api/1.0.9": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.dll b/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.dll
deleted file mode 100644
index b862413..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.exe b/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.exe
deleted file mode 100644
index fb7e2f5..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.exe and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.pdb b/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.pdb
deleted file mode 100644
index b6bfde5..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.runtimeconfig.json b/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.runtimeconfig.json
deleted file mode 100644
index af5af9b..0000000
--- a/Examples/bybit.api.console/bin/Release/net6.0/bybit.api.console.runtimeconfig.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net6.0",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "6.0.0"
- },
- "configProperties": {
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.dll b/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.dll
deleted file mode 100644
index df379e7..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.pdb b/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.pdb
deleted file mode 100644
index 1489f78..0000000
Binary files a/Examples/bybit.api.console/bin/Release/net6.0/bybit.net.api.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Examples/bybit.api.console/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
deleted file mode 100644
index a8c10ef..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/apphost.exe b/Examples/bybit.api.console/obj/Debug/net6.0/apphost.exe
deleted file mode 100644
index fb7e2f5..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/apphost.exe and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfo.cs b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfo.cs
deleted file mode 100644
index 4ddc5ac..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+09bf2e4095e32f653ff35afaf27a2aebbb0ec995")]
-[assembly: System.Reflection.AssemblyProductAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyTitleAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfoInputs.cache b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfoInputs.cache
deleted file mode 100644
index 5719a8d..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-7066d3450a1de46932ee0b505320a2a0b2f57b23598bf165426aa9ecf92d6f54
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 7bb8d6c..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,14 +0,0 @@
-is_global = true
-build_property.TargetFramework = net6.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = bybit.api.console
-build_property.ProjectDir = C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.EffectiveAnalysisLevelStyle = 6.0
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GlobalUsings.g.cs b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GlobalUsings.g.cs
deleted file mode 100644
index ac22929..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.assets.cache b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.assets.cache
deleted file mode 100644
index e49e9dc..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.assets.cache and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.AssemblyReference.cache b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.AssemblyReference.cache
deleted file mode 100644
index afe58b9..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.BuildWithSkipAnalyzers b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 719906c..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-0af6580b1329bcf19ab45cf8e0bf87afc0b5f19b33959717f8b6817a16d144fa
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.FileListAbsolute.txt b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.FileListAbsolute.txt
deleted file mode 100644
index 1fd31f1..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.api.console.exe
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.api.console.deps.json
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.api.console.runtimeconfig.json
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Newtonsoft.Json.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.net.api.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\bybit.net.api.pdb
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.csproj.AssemblyReference.cache
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.AssemblyInfoInputs.cache
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.AssemblyInfo.cs
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.csproj.CoreCompileInputs.cache
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.csproj.CopyComplete
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\refint\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\bybit.api.console.genruntimeconfig.cache
-C:\Net\GithubProjects\bybit.api.console\obj\Debug\net6.0\ref\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
-C:\Net\GithubProjects\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.api.console.exe
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.api.console.deps.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.api.console.runtimeconfig.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\Newtonsoft.Json.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.net.api.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Debug\net6.0\bybit.net.api.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.csproj.AssemblyReference.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.AssemblyInfoInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.AssemblyInfo.cs
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.csproj.CoreCompileInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.sourcelink.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\refint\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.api.console.genruntimeconfig.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\ref\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Debug\net6.0\bybit.ap.6EB48437.Up2Date
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.dll b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.dll
deleted file mode 100644
index 10662f1..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.genruntimeconfig.cache b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.genruntimeconfig.cache
deleted file mode 100644
index 410022a..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-ba10e85930b74cf41c9ddfc60a990b25eccc51ac26bcb843bed4cda1d2ece84f
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.pdb b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.pdb
deleted file mode 100644
index de06b16..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.sourcelink.json b/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.sourcelink.json
deleted file mode 100644
index 2a743d9..0000000
--- a/Examples/bybit.api.console/obj/Debug/net6.0/bybit.api.console.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Net\\GithubProjects\\bybit.net.api\\*":"https://raw.githubusercontent.com/VictorFrWu/bybit.net.api/09bf2e4095e32f653ff35afaf27a2aebbb0ec995/*"}}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/ref/bybit.api.console.dll b/Examples/bybit.api.console/obj/Debug/net6.0/ref/bybit.api.console.dll
deleted file mode 100644
index 8fb7de8..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/ref/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Debug/net6.0/refint/bybit.api.console.dll b/Examples/bybit.api.console/obj/Debug/net6.0/refint/bybit.api.console.dll
deleted file mode 100644
index 8fb7de8..0000000
Binary files a/Examples/bybit.api.console/obj/Debug/net6.0/refint/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Examples/bybit.api.console/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
deleted file mode 100644
index a8c10ef..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/apphost.exe b/Examples/bybit.api.console/obj/Release/net6.0/apphost.exe
deleted file mode 100644
index fb7e2f5..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/apphost.exe and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfo.cs b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfo.cs
deleted file mode 100644
index 0bda056..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+09bf2e4095e32f653ff35afaf27a2aebbb0ec995")]
-[assembly: System.Reflection.AssemblyProductAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyTitleAttribute("bybit.api.console")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfoInputs.cache b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfoInputs.cache
deleted file mode 100644
index 46047e2..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-845187263666f8dae1338bae1928c3aaaff626e2f99113cbc0ff192c2a53ccd0
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 7bb8d6c..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,14 +0,0 @@
-is_global = true
-build_property.TargetFramework = net6.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = bybit.api.console
-build_property.ProjectDir = C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.EffectiveAnalysisLevelStyle = 6.0
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GlobalUsings.g.cs b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GlobalUsings.g.cs
deleted file mode 100644
index ac22929..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.assets.cache b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.assets.cache
deleted file mode 100644
index ce344d7..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.assets.cache and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.AssemblyReference.cache b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.AssemblyReference.cache
deleted file mode 100644
index 587e5e4..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.BuildWithSkipAnalyzers b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 81bca67..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-e86f72a97588c4316bc46e458a0ccd379a22033c0ed910a7d4a58a6cd837d949
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.FileListAbsolute.txt b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.FileListAbsolute.txt
deleted file mode 100644
index 3745098..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.api.console.exe
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.api.console.deps.json
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.api.console.runtimeconfig.json
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Logging.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Options.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Primitives.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\Newtonsoft.Json.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.net.api.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\bin\Release\net6.0\bybit.net.api.pdb
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.csproj.AssemblyReference.cache
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.AssemblyInfoInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.AssemblyInfo.cs
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.csproj.CoreCompileInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.csproj.CopyComplete
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\refint\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\bybit.api.console.genruntimeconfig.cache
-C:\Net\GithubProjects\bybit.net.api\Consoles\bybit.api.console\obj\Release\net6.0\ref\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.api.console.exe
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.api.console.deps.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.api.console.runtimeconfig.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Logging.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Options.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Microsoft.Extensions.Primitives.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\Newtonsoft.Json.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.net.api.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\bin\Release\net6.0\bybit.net.api.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.csproj.AssemblyReference.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.GeneratedMSBuildEditorConfig.editorconfig
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.AssemblyInfoInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.AssemblyInfo.cs
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.csproj.CoreCompileInputs.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\refint\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.pdb
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.genruntimeconfig.cache
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\ref\bybit.api.console.dll
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.api.console.sourcelink.json
-C:\Net\GithubProjects\bybit.net.api\Examples\bybit.api.console\obj\Release\net6.0\bybit.ap.6EB48437.Up2Date
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.dll b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.dll
deleted file mode 100644
index b862413..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.genruntimeconfig.cache b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.genruntimeconfig.cache
deleted file mode 100644
index 9960bfe..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-50011618b609c3b556a33206a427c7d13a1fe88a6d489855962b54259342286a
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.pdb b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.pdb
deleted file mode 100644
index b6bfde5..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.pdb and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.sourcelink.json b/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.sourcelink.json
deleted file mode 100644
index 2a743d9..0000000
--- a/Examples/bybit.api.console/obj/Release/net6.0/bybit.api.console.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Net\\GithubProjects\\bybit.net.api\\*":"https://raw.githubusercontent.com/VictorFrWu/bybit.net.api/09bf2e4095e32f653ff35afaf27a2aebbb0ec995/*"}}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/ref/bybit.api.console.dll b/Examples/bybit.api.console/obj/Release/net6.0/ref/bybit.api.console.dll
deleted file mode 100644
index f334706..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/ref/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/Release/net6.0/refint/bybit.api.console.dll b/Examples/bybit.api.console/obj/Release/net6.0/refint/bybit.api.console.dll
deleted file mode 100644
index f334706..0000000
Binary files a/Examples/bybit.api.console/obj/Release/net6.0/refint/bybit.api.console.dll and /dev/null differ
diff --git a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.dgspec.json b/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.dgspec.json
deleted file mode 100644
index bb79d0c..0000000
--- a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,174 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj": {}
- },
- "projects": {
- "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj",
- "projectName": "bybit.api.console",
- "projectPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj",
- "packagesPath": "C:\\Users\\hwu\\.nuget\\packages\\",
- "outputPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\hwu\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net6.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "projectReferences": {
- "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj": {
- "projectPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "dependencies": {
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "System.Net.Http": {
- "target": "Package",
- "version": "[4.3.4, )"
- },
- "System.Text.RegularExpressions": {
- "target": "Package",
- "version": "[4.3.1, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100-preview.7.24407.12\\RuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj": {
- "version": "1.0.9",
- "restore": {
- "projectUniqueName": "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj",
- "projectName": "bybit.net.api",
- "projectPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj",
- "packagesPath": "C:\\Users\\hwu\\.nuget\\packages\\",
- "outputPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\hwu\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net6.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "dependencies": {
- "Microsoft.Extensions.Logging": {
- "target": "Package",
- "version": "[7.0.0, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "System.Net.Http": {
- "target": "Package",
- "version": "[4.3.4, )"
- },
- "System.Text.RegularExpressions": {
- "target": "Package",
- "version": "[4.3.1, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100-preview.7.24407.12\\RuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.props b/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.props
deleted file mode 100644
index b893d87..0000000
--- a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.props
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\hwu\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.12.0
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.targets b/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.targets
deleted file mode 100644
index 47636c2..0000000
--- a/Examples/bybit.api.console/obj/bybit.api.console.csproj.nuget.g.targets
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/project.assets.json b/Examples/bybit.api.console/obj/project.assets.json
deleted file mode 100644
index ced6593..0000000
--- a/Examples/bybit.api.console/obj/project.assets.json
+++ /dev/null
@@ -1,3497 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net6.0": {
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.3": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Net.Http/4.3.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "Microsoft.NETCore.Targets": "1.1.3"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/_._": {}
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.RegularExpressions/4.3.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.1"
- },
- "compile": {
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "bybit.net.api/1.0.9": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v6.0",
- "dependencies": {
- "Microsoft.Extensions.Logging": "7.0.0",
- "Newtonsoft.Json": "13.0.3",
- "System.Net.Http": "4.3.4",
- "System.Text.RegularExpressions": "4.3.1"
- },
- "compile": {
- "bin/placeholder/bybit.net.api.dll": {}
- },
- "runtime": {
- "bin/placeholder/bybit.net.api.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
- "type": "package",
- "path": "microsoft.extensions.logging/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
- "lib/net462/Microsoft.Extensions.Logging.dll",
- "lib/net462/Microsoft.Extensions.Logging.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.7.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
- "type": "package",
- "path": "microsoft.extensions.options/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Options.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
- "lib/net462/Microsoft.Extensions.Options.dll",
- "lib/net462/Microsoft.Extensions.Options.xml",
- "lib/net6.0/Microsoft.Extensions.Options.dll",
- "lib/net6.0/Microsoft.Extensions.Options.xml",
- "lib/net7.0/Microsoft.Extensions.Options.dll",
- "lib/net7.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.7.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
- "type": "package",
- "path": "microsoft.extensions.primitives/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
- "lib/net462/Microsoft.Extensions.Primitives.dll",
- "lib/net462/Microsoft.Extensions.Primitives.xml",
- "lib/net6.0/Microsoft.Extensions.Primitives.dll",
- "lib/net6.0/Microsoft.Extensions.Primitives.xml",
- "lib/net7.0/Microsoft.Extensions.Primitives.dll",
- "lib/net7.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.1.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.3": {
- "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.3.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Newtonsoft.Json/13.0.3": {
- "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "type": "package",
- "path": "newtonsoft.json/13.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "README.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/net6.0/Newtonsoft.Json.dll",
- "lib/net6.0/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "newtonsoft.json.13.0.3.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.system/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.4.3.0.nupkg.sha512",
- "runtime.native.system.nuspec"
- ]
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.system.net.http/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "runtime.native.system.net.http.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.native.system.security.cryptography.apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.native.system.security.cryptography.openssl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "system.collections.concurrent/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Collections.Concurrent.dll",
- "lib/netstandard1.3/System.Collections.Concurrent.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.Concurrent.dll",
- "ref/netcore50/System.Collections.Concurrent.xml",
- "ref/netcore50/de/System.Collections.Concurrent.xml",
- "ref/netcore50/es/System.Collections.Concurrent.xml",
- "ref/netcore50/fr/System.Collections.Concurrent.xml",
- "ref/netcore50/it/System.Collections.Concurrent.xml",
- "ref/netcore50/ja/System.Collections.Concurrent.xml",
- "ref/netcore50/ko/System.Collections.Concurrent.xml",
- "ref/netcore50/ru/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/System.Collections.Concurrent.dll",
- "ref/netstandard1.1/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/System.Collections.Concurrent.dll",
- "ref/netstandard1.3/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.concurrent.4.3.0.nupkg.sha512",
- "system.collections.concurrent.nuspec"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "system.diagnostics.tracing/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Diagnostics.Tracing.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.xml",
- "ref/netcore50/de/System.Diagnostics.Tracing.xml",
- "ref/netcore50/es/System.Diagnostics.Tracing.xml",
- "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
- "ref/netcore50/it/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "system.diagnostics.tracing.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.Globalization.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "system.globalization.calendars/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Calendars.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.calendars.4.3.0.nupkg.sha512",
- "system.globalization.calendars.nuspec"
- ]
- },
- "System.Globalization.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "system.globalization.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "system.globalization.extensions.4.3.0.nupkg.sha512",
- "system.globalization.extensions.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "system.io.filesystem/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.4.3.0.nupkg.sha512",
- "system.io.filesystem.nuspec"
- ]
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "system.io.filesystem.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Primitives.dll",
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "system.io.filesystem.primitives.nuspec"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Net.Http/4.3.4": {
- "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
- "type": "package",
- "path": "system.net.http/4.3.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/Xamarinmac20/_._",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.Http.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/Xamarinmac20/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Net.Http.dll",
- "ref/netcore50/System.Net.Http.dll",
- "ref/netstandard1.1/System.Net.Http.dll",
- "ref/netstandard1.3/System.Net.Http.dll",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
- "runtimes/win/lib/net46/System.Net.Http.dll",
- "runtimes/win/lib/netcore50/System.Net.Http.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
- "system.net.http.4.3.4.nupkg.sha512",
- "system.net.http.nuspec"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "system.net.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Net.Primitives.dll",
- "ref/netcore50/System.Net.Primitives.xml",
- "ref/netcore50/de/System.Net.Primitives.xml",
- "ref/netcore50/es/System.Net.Primitives.xml",
- "ref/netcore50/fr/System.Net.Primitives.xml",
- "ref/netcore50/it/System.Net.Primitives.xml",
- "ref/netcore50/ja/System.Net.Primitives.xml",
- "ref/netcore50/ko/System.Net.Primitives.xml",
- "ref/netcore50/ru/System.Net.Primitives.xml",
- "ref/netcore50/zh-hans/System.Net.Primitives.xml",
- "ref/netcore50/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.0/System.Net.Primitives.dll",
- "ref/netstandard1.0/System.Net.Primitives.xml",
- "ref/netstandard1.0/de/System.Net.Primitives.xml",
- "ref/netstandard1.0/es/System.Net.Primitives.xml",
- "ref/netstandard1.0/fr/System.Net.Primitives.xml",
- "ref/netstandard1.0/it/System.Net.Primitives.xml",
- "ref/netstandard1.0/ja/System.Net.Primitives.xml",
- "ref/netstandard1.0/ko/System.Net.Primitives.xml",
- "ref/netstandard1.0/ru/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.1/System.Net.Primitives.dll",
- "ref/netstandard1.1/System.Net.Primitives.xml",
- "ref/netstandard1.1/de/System.Net.Primitives.xml",
- "ref/netstandard1.1/es/System.Net.Primitives.xml",
- "ref/netstandard1.1/fr/System.Net.Primitives.xml",
- "ref/netstandard1.1/it/System.Net.Primitives.xml",
- "ref/netstandard1.1/ja/System.Net.Primitives.xml",
- "ref/netstandard1.1/ko/System.Net.Primitives.xml",
- "ref/netstandard1.1/ru/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.3/System.Net.Primitives.dll",
- "ref/netstandard1.3/System.Net.Primitives.xml",
- "ref/netstandard1.3/de/System.Net.Primitives.xml",
- "ref/netstandard1.3/es/System.Net.Primitives.xml",
- "ref/netstandard1.3/fr/System.Net.Primitives.xml",
- "ref/netstandard1.3/it/System.Net.Primitives.xml",
- "ref/netstandard1.3/ja/System.Net.Primitives.xml",
- "ref/netstandard1.3/ko/System.Net.Primitives.xml",
- "ref/netstandard1.3/ru/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.primitives.4.3.0.nupkg.sha512",
- "system.net.primitives.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.1": {
- "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
- "type": "package",
- "path": "system.runtime/4.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.1.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "system.runtime.numerics/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Runtime.Numerics.dll",
- "lib/netstandard1.3/System.Runtime.Numerics.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Runtime.Numerics.dll",
- "ref/netcore50/System.Runtime.Numerics.xml",
- "ref/netcore50/de/System.Runtime.Numerics.xml",
- "ref/netcore50/es/System.Runtime.Numerics.xml",
- "ref/netcore50/fr/System.Runtime.Numerics.xml",
- "ref/netcore50/it/System.Runtime.Numerics.xml",
- "ref/netcore50/ja/System.Runtime.Numerics.xml",
- "ref/netcore50/ko/System.Runtime.Numerics.xml",
- "ref/netcore50/ru/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/System.Runtime.Numerics.dll",
- "ref/netstandard1.1/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.numerics.4.3.0.nupkg.sha512",
- "system.runtime.numerics.nuspec"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "system.security.cryptography.algorithms.nuspec"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "system.security.cryptography.cng/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "system.security.cryptography.cng.4.3.0.nupkg.sha512",
- "system.security.cryptography.cng.nuspec"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "system.security.cryptography.csp/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Csp.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Csp.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/netcore50/_._",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "system.security.cryptography.csp.nuspec"
- ]
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "system.security.cryptography.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Encoding.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "system.security.cryptography.encoding.nuspec"
- ]
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "system.security.cryptography.openssl.nuspec"
- ]
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "type": "package",
- "path": "system.security.cryptography.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Primitives.dll",
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Primitives.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "system.security.cryptography.primitives.nuspec"
- ]
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.X509Certificates.dll",
- "ref/net461/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "system.security.cryptography.x509certificates.nuspec"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.RegularExpressions/4.3.1": {
- "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==",
- "type": "package",
- "path": "system.text.regularexpressions/4.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Text.RegularExpressions.dll",
- "lib/netcore50/System.Text.RegularExpressions.dll",
- "lib/netstandard1.6/System.Text.RegularExpressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.xml",
- "ref/netcore50/de/System.Text.RegularExpressions.xml",
- "ref/netcore50/es/System.Text.RegularExpressions.xml",
- "ref/netcore50/fr/System.Text.RegularExpressions.xml",
- "ref/netcore50/it/System.Text.RegularExpressions.xml",
- "ref/netcore50/ja/System.Text.RegularExpressions.xml",
- "ref/netcore50/ko/System.Text.RegularExpressions.xml",
- "ref/netcore50/ru/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/System.Text.RegularExpressions.dll",
- "ref/netstandard1.3/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/System.Text.RegularExpressions.dll",
- "ref/netstandard1.6/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.regularexpressions.4.3.1.nupkg.sha512",
- "system.text.regularexpressions.nuspec"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "bybit.net.api/1.0.9": {
- "type": "project",
- "path": "../../Src/Common/bybit.net.api.csproj",
- "msbuildProject": "../../Src/Common/bybit.net.api.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net6.0": [
- "Newtonsoft.Json >= 13.0.3",
- "System.Net.Http >= 4.3.4",
- "System.Text.RegularExpressions >= 4.3.1",
- "bybit.net.api >= 1.0.9"
- ]
- },
- "packageFolders": {
- "C:\\Users\\hwu\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj",
- "projectName": "bybit.api.console",
- "projectPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj",
- "packagesPath": "C:\\Users\\hwu\\.nuget\\packages\\",
- "outputPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\hwu\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net6.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "projectReferences": {
- "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj": {
- "projectPath": "C:\\Net\\GithubProjects\\bybit.net.api\\Src\\Common\\bybit.net.api.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net6.0": {
- "targetAlias": "net6.0",
- "dependencies": {
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "System.Net.Http": {
- "target": "Package",
- "version": "[4.3.4, )"
- },
- "System.Text.RegularExpressions": {
- "target": "Package",
- "version": "[4.3.1, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100-preview.7.24407.12\\RuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Examples/bybit.api.console/obj/project.nuget.cache b/Examples/bybit.api.console/obj/project.nuget.cache
deleted file mode 100644
index 8e9636b..0000000
--- a/Examples/bybit.api.console/obj/project.nuget.cache
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "14U7UhYnA+g=",
- "success": true,
- "projectFilePath": "C:\\Net\\GithubProjects\\bybit.net.api\\Examples\\bybit.api.console\\bybit.api.console.csproj",
- "expectedPackageFiles": [
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
- "C:\\Users\\hwu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/Src/Common/ApiServiceImp/BybitAccountService.cs b/Src/Common/ApiServiceImp/BybitAccountService.cs
index 020ada1..8304abb 100644
--- a/Src/Common/ApiServiceImp/BybitAccountService.cs
+++ b/Src/Common/ApiServiceImp/BybitAccountService.cs
@@ -37,7 +37,7 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
return result;
}
- private const string UPGRADE_UTA = "/v5/account/wallet-balance";
+ private const string UPGRADE_UTA = "/v5/account/upgrade-to-uta";
///
/// Upgrade to Unified Account
///
@@ -173,7 +173,7 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
return result;
}
- private const string FREE_RATE = "/v5/account/fee-rate";
+ private const string FEE_RATE = "/v5/account/fee-rate";
///
/// Get the trading fee rate.
/// Covers: Spot / USDT perpetual / USDC perpetual / USDC futures / Inverse perpetual / Inverse futures / Options
@@ -182,7 +182,7 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
///
///
/// Free Rates
- public async Task GetAccountFreeRate(Category category, string? symbol = null, string? baseCoin = null)
+ public async Task GetAccountFeeRate(Category category, string? symbol = null, string? baseCoin = null)
{
var query = new Dictionary { { "category", category.Value } };
@@ -190,7 +190,7 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
("symbol", symbol),
("baseCoin", baseCoin)
);
- var result = await this.SendSignedAsync(FREE_RATE, HttpMethod.Get, query: query);
+ var result = await this.SendSignedAsync(FEE_RATE, HttpMethod.Get, query: query);
return result;
}
@@ -208,6 +208,72 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
return result;
}
+ private const string GET_DCP_INFO = "/v5/account/query-dcp-info";
+
+ ///
+ /// Get DCP Info
+ /// Query the account's DCP configuration. Requires UTA DCP to be configured.
+ ///
+ ///
+ public async Task GetDcpInfo()
+ {
+ var result = await this.SendSignedAsync(GET_DCP_INFO, HttpMethod.Get);
+ return result;
+ }
+
+ private const string GET_CONTRACT_TRANSACTION_LOG_CLASSIC = "/v5/account/contract-transaction-log";
+
+ ///
+ /// CLASSIC: Get Transaction Log
+ /// Query transaction logs in derivatives wallet (classic) and inverse derivatives wallet (UTA1.0).
+ ///
+ /// uppercase
+ /// uppercase
+ /// log type
+ /// ms
+ /// ms
+ /// [1,50], default 20
+ /// pagination
+ ///
+ public async Task GetContractTransactionLogClassic(
+ string? currency = null,
+ string? baseCoin = null,
+ string? type = null,
+ long? startTime = null,
+ long? endTime = null,
+ int? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("currency", currency),
+ ("baseCoin", baseCoin),
+ ("type", type),
+ ("startTime", startTime),
+ ("endTime", endTime),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_CONTRACT_TRANSACTION_LOG_CLASSIC, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_SMP_GROUP = "/v5/account/smp-group";
+
+ ///
+ /// Get SMP Group ID
+ /// Query the SMP group ID of self match prevention. Returns 0 if no group.
+ ///
+ ///
+ public async Task GetSmpGroupId()
+ {
+ var result = await this.SendSignedAsync(GET_SMP_GROUP, HttpMethod.Get);
+ return result;
+ }
+
+
private const string TRANSACTION_LOG = "/v5/account/transaction-log";
///
/// Query transaction logs in Unified account.
@@ -319,6 +385,41 @@ public BybitAccountService(HttpClient httpClient, string apiKey, string apiSecre
return result;
}
+ private const string SET_LIMIT_PRICE_BEHAVIOUR = "/v5/account/set-limit-px-action";
+
+ ///
+ /// Set Limit Price Behaviour
+ /// Configure how the system handles limit prices beyond allowed boundaries.
+ ///
+ /// linear, inverse, spot
+ /// true: auto-adjust; false: reject
+ ///
+ public async Task SetLimitPriceBehaviour(string category, bool modifyEnable)
+ {
+ var body = new Dictionary
+ {
+ { "category", category },
+ { "modifyEnable", modifyEnable }
+ };
+
+ var result = await this.SendSignedAsync(SET_LIMIT_PRICE_BEHAVIOUR, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_USER_SETTING_CONFIG = "/v5/account/user-setting-config";
+
+ ///
+ /// Get Limit Price Behaviour
+ /// Query how limit prices beyond boundaries are handled for Spot and Perps.
+ ///
+ ///
+ public async Task GetLimitPriceBehaviourConfig()
+ {
+ var result = await this.SendSignedAsync(GET_USER_SETTING_CONFIG, HttpMethod.Get);
+ return result;
+ }
+
+
private const string MMP_STATE = "/v5/account/mmp-state";
///
/// Get MMP State
diff --git a/Src/Common/ApiServiceImp/BybitAffiliateService.cs b/Src/Common/ApiServiceImp/BybitAffiliateService.cs
new file mode 100644
index 0000000..72c97c8
--- /dev/null
+++ b/Src/Common/ApiServiceImp/BybitAffiliateService.cs
@@ -0,0 +1,72 @@
+using bybit.net.api.Models.Lending;
+using bybit.net.api.Services;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace bybit.net.api.ApiServiceImp
+{
+ public class BybitAffiliateService : BybitApiService
+ {
+ public BybitAffiliateService(string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : this(httpClient: new HttpClient(), apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ public BybitAffiliateService(HttpClient httpClient, string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : base(httpClient: httpClient, apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ private const string GET_AFFILIATE_USER_LIST = "/v5/affiliate/aff-user-list";
+
+ ///
+ /// Get Affiliate User List
+ /// Requires master UID and API key with only "Affiliate" permission.
+ ///
+ /// [0,1000], default 0
+ /// pagination cursor
+ /// include deposit info
+ /// include last 30d trading info
+ /// include last 365d trading info
+ ///
+ public async Task GetAffiliateUserList(
+ int? size = null,
+ string? cursor = null,
+ bool? needDeposit = null,
+ bool? need30 = null,
+ bool? need365 = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("size", size),
+ ("cursor", cursor),
+ ("needDeposit", needDeposit),
+ ("need30", need30),
+ ("need365", need365)
+ );
+
+ var result = await this.SendSignedAsync(GET_AFFILIATE_USER_LIST, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_AFFILIATE_USER_INFO = "/v5/user/aff-customer-info";
+
+ ///
+ /// Get Affiliate User Info
+ /// Requires master UID and API key with only "Affiliate" permission.
+ ///
+ /// Affiliate client's master UID
+ ///
+ public async Task GetAffiliateUserInfo(string uid)
+ {
+ var query = new Dictionary { { "uid", uid } };
+ var result = await this.SendSignedAsync(GET_AFFILIATE_USER_INFO, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ }
+}
diff --git a/Src/Common/ApiServiceImp/BybitAssetService.cs b/Src/Common/ApiServiceImp/BybitAssetService.cs
index 20083bf..64d3bcc 100644
--- a/Src/Common/ApiServiceImp/BybitAssetService.cs
+++ b/Src/Common/ApiServiceImp/BybitAssetService.cs
@@ -18,6 +18,45 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
{
}
+ private const string GET_DELIVERY_RECORD = "/v5/asset/delivery-record";
+
+ ///
+ /// Get Delivery Record
+ /// Query delivery records for Futures and Options. Sorted by deliveryTime desc.
+ ///
+ /// UTA2.0: inverse, linear, option. UTA1.0: linear, option
+ /// optional
+ /// ms
+ /// ms
+ /// e.g., 25MAR22
+ /// [1,50], default 20
+ /// pagination cursor
+ ///
+ public async Task GetDeliveryRecord(
+ string category,
+ string? symbol = null,
+ long? startTime = null,
+ long? endTime = null,
+ string? expDate = null,
+ int? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary { { "category", category } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("symbol", symbol),
+ ("startTime", startTime),
+ ("endTime", endTime),
+ ("expDate", expDate),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_DELIVERY_RECORD, HttpMethod.Get, query: query);
+ return result;
+ }
+
+
private const string COIN_EXCHANGE_RECORDS = "/v5/asset/exchange/order-record";
///
/// Query the coin exchange records.
@@ -172,7 +211,7 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
///
///
/// List of coin
- public async Task GetAllAssetBalance(AccountType accountType, AccountType toAccountType)
+ public async Task GetTransferableCoin(AccountType accountType, AccountType toAccountType)
{
var query = new Dictionary { { "accountType", accountType.Value }, { "toAccountType", toAccountType.Value } };
var result = await this.SendSignedAsync(TRANSABLE_COIN, HttpMethod.Get, query: query);
@@ -340,7 +379,7 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
return result;
}
- private const string DEPOSIT_RECORDS = "/v5/asset/deposit/deposit-to-account";
+ private const string DEPOSIT_RECORDS = "/v5/asset/deposit/query-record";
///
/// endTime - startTime should be less than 30 days. Query last 30 days records by default.
/// Can use main or sub UID api key to query deposit records respectively.
@@ -392,7 +431,7 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
return result;
}
- private const string INTERNAL_DEPOSIT_RECORDS = "/v5/asset/deposit/query-sub-member-record";
+ private const string INTERNAL_DEPOSIT_RECORDS = "/v5/asset/deposit/query-internal-record";
///
/// The maximum difference between the start time and the end time is 30 days.
/// Support to get deposit records by Master or Sub Member Api Key
@@ -468,6 +507,19 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
return result;
}
+ private const string GET_EXCHANGE_ENTITY_LIST = "/v5/asset/withdraw/vasp/list";
+
+ ///
+ /// Get Exchange Entity List
+ /// Returns exchange entity info for withdrawals (e.g., for KOR KYC users).
+ ///
+ ///
+ public async Task GetExchangeEntityList()
+ {
+ var result = await this.SendSignedAsync(GET_EXCHANGE_ENTITY_LIST, HttpMethod.Get);
+ return result;
+ }
+
private const string WITHDRAW_RECORDS = "/v5/asset/withdraw/query-record";
///
/// endTime - startTime should be less than 30 days. Query last 30 days records by default.
@@ -512,43 +564,206 @@ public BybitAssetService(HttpClient httpClient, string apiKey, string apiSecret,
return result;
}
- private const string ASSET_WITHDRAW = "/v5/asset/withdraw/create";
+ private const string CREATE_WITHDRAW = "/v5/asset/withdraw/create";
+
///
- /// Withdraw assets from your Bybit account. You can make an off-chain transfer if the target wallet address is from Bybit. This means that no blockchain fee will be charged.
- /// UTA does not have SPOT account
- /// How do I know if my account is a UTA account? Call this endpoint, and if uta=1, then it is a UTA account.
- /// Make sure you have whitelisted your wallet address here
- /// Can query by the master UID's api key only
- /// feeType = 0:
- /// withdrawPercentageFee != 0: handlingFee = inputAmount / (1 - withdrawPercentageFee) * withdrawPercentageFee + withdrawFee
- /// withdrawPercentageFee = 0: handlingFee = withdrawFee
- /// feeType = 1:
- /// withdrawPercentageFee != 0: handlingFee = withdrawFee + (inputAmount - withdrawFee) * withdrawPercentageFee
- /// withdrawPercentageFee = 0: handlingFee = withdrawFee
+ /// Withdraw
+ /// Create a withdrawal. If the target is a Bybit internal address, the system may perform an off-chain transfer.
+ /// chain is required when forceChain=0 or 1. For forceChain=2, address must be a Bybit main UID.
///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- /// id
- public async Task PlaceAssetWithdraw(string coin, string chain, string address, string amount, long timestamp, string? tag = null, int? forceChain = null, AccountType? accountType = null, FeeType? feeType = null)
+ /// uppercase
+ /// wallet address or UID when forceChain=2
+ /// withdraw amount
+ /// current ms timestamp for replay protection
+ /// FUND, UTA, FUND,UTA, or SPOT
+ /// required if forceChain=0 or 1
+ /// required if address uses tag/memo
+ /// 0 default internal if possible, 1 force on-chain, 2 use UID
+ /// 0 input is net received, 1 auto-deduct fee
+ /// idempotency key
+ /// travel rule info
+ ///
+ public async Task PlaceAssetWithdraw(
+ string coin,
+ string address,
+ string amount,
+ long timestamp,
+ string accountType,
+ string? chain = null,
+ string? tag = null,
+ int? forceChain = null,
+ int? feeType = null,
+ string? requestId = null,
+ Beneficiary? beneficiary = null)
{
- var query = new Dictionary { { "coin", coin }, { "chain", chain }, { "address", address }, { "amount", amount }, { "timestamp", timestamp } };
- BybitParametersUtils.AddOptionalParameters(query,
+ var body = new Dictionary
+ {
+ { "coin", coin },
+ { "address", address },
+ { "amount", amount },
+ { "timestamp", timestamp },
+ { "accountType", accountType }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("chain", chain),
("tag", tag),
("forceChain", forceChain),
- ("accountType", accountType?.Value),
- ("feeType", feeType?.Value)
+ ("feeType", feeType),
+ ("requestId", requestId)
+ );
+
+ if (beneficiary != null)
+ body["beneficiary"] = beneficiary;
+
+ var result = await this.SendSignedAsync(CREATE_WITHDRAW, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string REQUEST_QUOTE = "/v5/asset/exchange/quote-apply";
+
+ ///
+ /// Request a Quote
+ /// Apply for a convert quote. Expires in ~15 seconds.
+ ///
+ ///
+ ///
+ ///
+ /// Same as fromCoin
+ /// Amount to sell
+ /// crypto
+ /// crypto
+ /// opFrom for broker
+ /// Broker ID
+ /// Custom ID, max 36
+ ///
+ public async Task RequestQuote(
+ string accountType,
+ string fromCoin,
+ string toCoin,
+ string requestCoin,
+ string requestAmount,
+ string? fromCoinType = null,
+ string? toCoinType = null,
+ string? paramType = null,
+ string? paramValue = null,
+ string? requestId = null)
+ {
+ var body = new Dictionary
+ {
+ { "accountType", accountType },
+ { "fromCoin", fromCoin },
+ { "toCoin", toCoin },
+ { "requestCoin", requestCoin },
+ { "requestAmount", requestAmount }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("fromCoinType", fromCoinType),
+ ("toCoinType", toCoinType),
+ ("paramType", paramType),
+ ("paramValue", paramValue),
+ ("requestId", requestId)
);
- var result = await this.SendSignedAsync(ASSET_WITHDRAW, HttpMethod.Post, query: query);
+
+ var result = await this.SendSignedAsync(REQUEST_QUOTE, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string CONFIRM_QUOTE = "/v5/asset/exchange/convert-execute";
+
+ ///
+ /// Confirm a Quote
+ /// Confirm the convert quote before it expires. Exchange is async; check final status via the query API.
+ ///
+ /// Quote transaction ID from Request a Quote
+ ///
+ public async Task ConfirmQuote(string quoteTxId)
+ {
+ var body = new Dictionary
+ {
+ { "quoteTxId", quoteTxId }
+ };
+
+ var result = await this.SendSignedAsync(CONFIRM_QUOTE, HttpMethod.Post, query: body);
return result;
}
+ private const string GET_CONVERT_HISTORY = "/v5/asset/exchange/query-convert-history";
+
+ ///
+ /// Get Convert History
+ /// Returns confirmed convert quotes created via API.
+ ///
+ /// Comma-separated wallet types or null for all
+ /// Page number, starts from 1
+ /// Page size, up to 100
+ ///
+ public async Task GetConvertHistory(string? accountType = null, int? index = null, int? limit = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("accountType", accountType),
+ ("index", index),
+ ("limit", limit)
+ );
+
+ var result = await this.SendSignedAsync(GET_CONVERT_HISTORY, HttpMethod.Get, query: query);
+ return result;
+ }
+
+
+ private const string GET_CONVERT_STATUS = "/v5/asset/exchange/convert-result-query";
+
+ ///
+ /// Get Convert Status
+ /// Query the exchange result by quoteTxId.
+ ///
+ /// Quote tx ID
+ /// Wallet type
+ ///
+ public async Task GetConvertStatus(string quoteTxId, string accountType)
+ {
+ var query = new Dictionary
+ {
+ { "quoteTxId", quoteTxId },
+ { "accountType", accountType }
+ };
+
+ var result = await this.SendSignedAsync(GET_CONVERT_STATUS, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_CONVERT_COIN_LIST = "/v5/asset/exchange/query-coin-list";
+
+ ///
+ /// Get Convert Coin List
+ /// Query the list of coins available to convert to/from.
+ ///
+ ///
+ /// eb_convert_funding | eb_convert_uta | eb_convert_spot | eb_convert_contract | eb_convert_inverse
+ ///
+ ///
+ /// From-coin when side=1 filters toCoin list; ignored when side=0
+ ///
+ /// 0: fromCoin list, 1: toCoin list
+ ///
+ public async Task GetConvertCoinList(string accountType, string? coin = null, int? side = null)
+ {
+ var query = new Dictionary { { "accountType", accountType } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("coin", coin),
+ ("side", side)
+ );
+
+ var result = await this.SendSignedAsync(GET_CONVERT_COIN_LIST, HttpMethod.Get, query: query);
+ return result;
+ }
+
+
+
private const string CANCEL_WITHDRAW = "/v5/asset/withdraw/cancel";
///
/// Cancel the withdrawal
diff --git a/Src/Common/ApiServiceImp/BybitEarnService.cs b/Src/Common/ApiServiceImp/BybitEarnService.cs
new file mode 100644
index 0000000..b678e5b
--- /dev/null
+++ b/Src/Common/ApiServiceImp/BybitEarnService.cs
@@ -0,0 +1,138 @@
+using bybit.net.api.Services;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace bybit.net.api.ApiServiceImp
+{
+ internal class BybitEarnService : BybitApiService
+ {
+ public BybitEarnService(string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : this(httpClient: new HttpClient(), apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ public BybitEarnService(HttpClient httpClient, string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : base(httpClient: httpClient, apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ private const string GET_PRODUCT_INFO = "/v5/earn/product";
+
+ ///
+ /// Get Product Info
+ /// Public. Returns Earn product specs for FlexibleSaving or OnChain.
+ ///
+ /// FlexibleSaving or OnChain
+ /// Optional coin
+ ///
+ public async Task GetProductInfo(string category, string? coin = null)
+ {
+ var query = new Dictionary { { "category", category } };
+ BybitParametersUtils.AddOptionalParameters(query, ("coin", coin));
+
+ var result = await this.SendPublicAsync(GET_PRODUCT_INFO, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string PLACE_EARN_ORDER = "/v5/earn/place-order";
+
+ ///
+ /// Stake / Redeem
+ /// Place Earn order for FlexibleSaving or OnChain. API key needs "Earn" permission.
+ ///
+ /// FlexibleSaving or OnChain
+ /// Stake or Redeem
+ /// FUND or UNIFIED (OnChain supports FUND only)
+ /// Amount; must meet product precision/limits
+ /// Coin name
+ /// Product ID
+ /// Custom ID, up to 36 chars
+ /// Required for OnChain non-LST redeem
+ ///
+ /// FUND or UNIFIED. OnChain LST: FUND/UNIFIED (custodial subaccount UNIFIED only). OnChain non-LST: FUND only.
+ ///
+ ///
+ public async Task PlaceEarnOrder(
+ string category,
+ string orderType,
+ string accountType,
+ string amount,
+ string coin,
+ string productId,
+ string orderLinkId,
+ string? redeemPositionId = null,
+ string? toAccountType = null)
+ {
+ var body = new Dictionary
+ {
+ { "category", category },
+ { "orderType", orderType },
+ { "accountType", accountType },
+ { "amount", amount },
+ { "coin", coin },
+ { "productId", productId },
+ { "orderLinkId", orderLinkId }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("redeemPositionId", redeemPositionId),
+ ("toAccountType", toAccountType)
+ );
+
+ var result = await this.SendSignedAsync(PLACE_EARN_ORDER, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_EARN_ORDER_HISTORY = "/v5/earn/order";
+
+ ///
+ /// Get Stake/Redeem Order History
+ /// Earn permission required. For FlexibleSaving or OnChain.
+ ///
+ /// FlexibleSaving or OnChain
+ /// Order ID (required if orderLinkId is null)
+ ///
+ /// Order link ID (required if orderId is null). If reused, returns the latest.
+ ///
+ ///
+ public async Task GetEarnOrderHistory(string category, string? orderId = null, string? orderLinkId = null)
+ {
+ var query = new Dictionary { { "category", category } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("orderLinkId", orderLinkId)
+ );
+
+ var result = await this.SendSignedAsync(GET_EARN_ORDER_HISTORY, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_STAKED_POSITION = "/v5/earn/position";
+
+ ///
+ /// Get Staked Position
+ /// Earn permission required. FlexibleSaving returns active and fully redeemed positions.
+ /// OnChain returns active positions only.
+ ///
+ /// FlexibleSaving or OnChain
+ /// Optional product ID
+ /// Optional coin
+ ///
+ public async Task GetStakedPosition(string category, string? productId = null, string? coin = null)
+ {
+ var query = new Dictionary { { "category", category } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("productId", productId),
+ ("coin", coin)
+ );
+
+ var result = await this.SendSignedAsync(GET_STAKED_POSITION, HttpMethod.Get, query: query);
+ return result;
+ }
+ }
+}
diff --git a/Src/Common/ApiServiceImp/BybitMarketDataService.cs b/Src/Common/ApiServiceImp/BybitMarketDataService.cs
index e17982b..49f3158 100644
--- a/Src/Common/ApiServiceImp/BybitMarketDataService.cs
+++ b/Src/Common/ApiServiceImp/BybitMarketDataService.cs
@@ -78,7 +78,7 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
///
///
/// Market kline
- public async Task GetMarKPricetKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
+ public async Task GetMarkPriceKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
{
var query = new Dictionary
{
@@ -99,7 +99,7 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
return result;
}
- private const string INDEX_PRICE_KLINE = "/v5/market/mark-price-kline";
+ private const string INDEX_PRICE_KLINE = "/v5/market/index-price-kline";
///
/// Query for historical index price klines. Charts are returned in groups based on the requested interval.
/// Covers: USDT perpetual / USDC contract / Inverse contract
@@ -111,7 +111,7 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
///
///
/// Market kline
- public async Task GetIndexPricetKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
+ public async Task GetIndexPriceKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
{
var query = new Dictionary
{
@@ -144,7 +144,7 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
///
///
/// Market kline
- public async Task GetPremiumIndexPricetKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
+ public async Task GetPremiumIndexPriceKline(Category category, string symbol, MarketInterval interval, long? start = null, long? end = null, int? limit = null)
{
var query = new Dictionary
{
@@ -452,7 +452,7 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
///
///
/// Market Delivery Price
- public async Task GetMarketDeliveryPrice(Category category, string? symbol = null, string? baseCoin = null, int? limit =null, string? cursor = null)
+ public async Task GetMarketDeliveryPrice(Category category, string? symbol = null, string? baseCoin = null, string? settleCoin = null, int? limit =null, string? cursor = null)
{
var query = new Dictionary { { "category", category } };
@@ -460,7 +460,8 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
("symbol", symbol),
("baseCoin", baseCoin),
("limit", limit),
- ("cursor", cursor)
+ ("cursor", cursor),
+ ("settleCoin", settleCoin)
);
var result = await SendPublicAsync(
@@ -472,30 +473,97 @@ public BybitMarketDataService(HttpClient httpClient, string? url = null, string
return result;
}
- private const string MARKET_LONG_SHORT_RATIO = "/v5/market/account-ratio";
+ private const string GET_NEW_DELIVERY_PRICE = "/v5/market/new-delivery-price";
+
+ ///
+ /// Get New Delivery Price
+ /// Get historical option delivery prices. Data may be delayed by ~1 minute after settlement.
+ ///
+ /// Product type. Valid: "option"
+ /// Base coin, e.g., BTC
+ /// Settle coin. Default: USDT
+ ///
+ public async Task GetNewDeliveryPrice(string category, string baseCoin, string? settleCoin = null)
+ {
+ var query = new Dictionary
+ {
+ { "category", category },
+ { "baseCoin", baseCoin }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("settleCoin", settleCoin)
+ );
+
+ var result = await this.SendPublicAsync(GET_NEW_DELIVERY_PRICE, HttpMethod.Get, query: query);
+ return result;
+ }
+
+
+ private const string GET_LONG_SHORT_RATIO = "/v5/market/account-ratio";
+
///
/// Get Long Short Ratio
+ /// Returns account long/short ratio over the requested period.
///
- ///
- ///
- ///
- ///
- /// Market Delivery Price
- public async Task GetMarketDeliveryPrice(Category category, string symbol, string period, int? limit = null)
+ /// linear or inverse
+ /// e.g., BTCUSDT
+ /// 5min, 15min, 30min, 1h, 4h, 1d
+ /// Timestamp (ms)
+ /// Timestamp (ms)
+ /// [1,500], default 50
+ /// pagination cursor
+ ///
+ public async Task GetLongShortRatio(
+ string category,
+ string symbol,
+ string period,
+ string? startTime = null,
+ string? endTime = null,
+ int? limit = null,
+ string? cursor = null)
{
- var query = new Dictionary { { "category", category }, { "symbol", symbol }, { "period", period } };
+ var query = new Dictionary
+ {
+ { "category", category },
+ { "symbol", symbol },
+ { "period", period }
+ };
BybitParametersUtils.AddOptionalParameters(query,
- ("limit", limit)
+ ("startTime", startTime),
+ ("endTime", endTime),
+ ("limit", limit),
+ ("cursor", cursor)
);
- var result = await SendPublicAsync(
- MARKET_LONG_SHORT_RATIO,
- HttpMethod.Get,
- query: query
- );
+ var result = await this.SendPublicAsync(GET_LONG_SHORT_RATIO, HttpMethod.Get, query: query);
+ return result;
+ }
+ private const string GET_ORDER_PRICE_LIMIT = "/v5/market/price-limit";
+
+ ///
+ /// Get Order Price Limit
+ /// Returns current highest bid and lowest ask price limits.
+ ///
+ /// Symbol name, e.g., BTCUSDT
+ /// spot, linear, inverse. Default: linear if omitted
+ ///
+ public async Task GetOrderPriceLimit(string symbol, string? category = null)
+ {
+ var query = new Dictionary
+ {
+ { "symbol", symbol }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("category", category)
+ );
+
+ var result = await this.SendPublicAsync(GET_ORDER_PRICE_LIMIT, HttpMethod.Get, query: query);
return result;
}
+
}
}
diff --git a/Src/Common/ApiServiceImp/BybitNewCryptoLoanService.cs b/Src/Common/ApiServiceImp/BybitNewCryptoLoanService.cs
new file mode 100644
index 0000000..465db31
--- /dev/null
+++ b/Src/Common/ApiServiceImp/BybitNewCryptoLoanService.cs
@@ -0,0 +1,705 @@
+using bybit.net.api.Services;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace bybit.net.api.ApiServiceImp
+{
+ internal class BybitNewCryptoLoanService : BybitApiService
+ {
+ public BybitNewCryptoLoanService(string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : this(httpClient: new HttpClient(), apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ public BybitNewCryptoLoanService(HttpClient httpClient, string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : base(httpClient: httpClient, apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ private const string GET_BORROWABLE_COINS = "/v5/crypto-loan-common/loanable-data";
+
+ ///
+ /// Get Borrowable Coins
+ /// Public endpoint. Lists borrowable coins and limits.
+ ///
+ /// VIP0..VIP5, VIP99, PRO1..PRO6
+ /// Coin, uppercase
+ ///
+ public async Task GetBorrowableCoins(string? vipLevel = null, string? currency = null)
+ {
+ var query = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("vipLevel", vipLevel),
+ ("currency", currency)
+ );
+
+ var result = await this.SendPublicAsync(GET_BORROWABLE_COINS, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_COLLATERAL_COINS = "/v5/crypto-loan-common/collateral-data";
+
+ ///
+ /// Get Collateral Coins
+ /// Public. Collateral ratios and liquidation priority.
+ ///
+ /// Optional coin, uppercase
+ ///
+ public async Task GetCollateralCoins(string? currency = null)
+ {
+ var query = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(query, ("currency", currency));
+
+ var result = await this.SendPublicAsync(GET_COLLATERAL_COINS, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_MAX_ALLOWED_COLLATERAL_REDUCTION_AMOUNT = "/v5/crypto-loan-common/max-collateral-amount";
+
+ ///
+ /// Get Max. Allowed Collateral Reduction Amount
+ /// Retrieve the maximum redeemable amount of your collateral asset based on LTV. Auth required.
+ ///
+ /// Collateral coin
+ ///
+ public async Task GetMaxAllowedCollateralReductionAmount(string currency)
+ {
+ var query = new Dictionary { { "currency", currency } };
+
+ var result = await this.SendSignedAsync(
+ GET_MAX_ALLOWED_COLLATERAL_REDUCTION_AMOUNT,
+ HttpMethod.Get,
+ query: query
+ );
+ return result;
+ }
+
+ private const string ADJUST_COLLATERAL_AMOUNT = "/v5/crypto-loan-common/adjust-ltv";
+
+ ///
+ /// Adjust Collateral Amount
+ /// Increase or reduce collateral. Funds are moved to/from Funding wallet.
+ ///
+ /// Collateral coin
+ /// Adjustment amount
+ /// "0": add collateral; "1": reduce collateral
+ ///
+ public async Task AdjustCollateralAmount(string currency, string amount, string direction)
+ {
+ var body = new Dictionary
+ {
+ { "currency", currency },
+ { "amount", amount },
+ { "direction", direction }
+ };
+
+ var result = await this.SendSignedAsync(ADJUST_COLLATERAL_AMOUNT, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_COLLATERAL_ADJUSTMENT_HISTORY = "/v5/crypto-loan-common/adjustment-history";
+
+ ///
+ /// Get Collateral Adjustment History
+ /// Query LTV adjustment history. Auth required.
+ ///
+ /// Collateral adjustment transaction ID
+ /// Collateral coin
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetCollateralAdjustmentHistory(
+ string? adjustId = null,
+ string? collateralCurrency = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("adjustId", adjustId),
+ ("collateralCurrency", collateralCurrency),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_COLLATERAL_ADJUSTMENT_HISTORY, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_CRYPTO_LOAN_POSITION = "/v5/crypto-loan-common/position";
+
+ ///
+ /// Get Crypto Loan Position
+ /// Spot trade permission required. Returns borrow, collateral, and supply positions.
+ ///
+ ///
+ public async Task GetCryptoLoanPosition()
+ {
+ var result = await this.SendSignedAsync(GET_CRYPTO_LOAN_POSITION, HttpMethod.Get);
+ return result;
+ }
+
+ private const string BORROW_FLEXIBLE_LOAN = "/v5/crypto-loan-flexible/borrow";
+
+ ///
+ /// Flexible Borrow
+ /// Borrow with optional collateral list. Funds move to/from Funding wallet.
+ ///
+ /// Loan coin
+ /// Amount to borrow
+ ///
+ /// Optional list of (collateralCurrency, collateralAmount). Up to 100 items.
+ ///
+ ///
+ public async Task BorrowFlexibleLoan(
+ string loanCurrency,
+ string loanAmount,
+ IEnumerable<(string collateralCurrency, string collateralAmount)>? collateralList = null)
+ {
+ var body = new Dictionary
+ {
+ { "loanCurrency", loanCurrency },
+ { "loanAmount", loanAmount }
+ };
+
+ if (collateralList != null)
+ {
+ body["collateralList"] = collateralList
+ .Select(c => new Dictionary
+ {
+ { "collateralCurrency", c.collateralCurrency },
+ { "collateralAmount", c.collateralAmount }
+ })
+ .ToList();
+ }
+
+ var result = await this.SendSignedAsync(BORROW_FLEXIBLE_LOAN, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string REPAY_FLEXIBLE_LOAN = "/v5/crypto-loan-flexible/repay";
+
+ ///
+ /// Flexible Repay
+ /// Fully or partially repay a flexible loan. Funds are deducted from Funding wallet.
+ ///
+ /// Loan currency
+ /// Repay amount
+ ///
+ public async Task RepayFlexibleLoan(string loanCurrency, string amount)
+ {
+ var body = new Dictionary
+ {
+ { "loanCurrency", loanCurrency },
+ { "amount", amount }
+ };
+
+ var result = await this.SendSignedAsync(REPAY_FLEXIBLE_LOAN, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string REPAY_COLLATERAL_FLEXIBLE = "/v5/crypto-loan-flexible/repay-collateral";
+
+ ///
+ /// Flexible Collateral Repayment
+ /// Pay interest first, then principal. Spot trade permission required.
+ ///
+ /// Loan currency
+ /// Collateral currencies, comma-separated for multiple
+ /// Repay amount
+ ///
+ public async Task RepayCollateralFlexible(string loanCurrency, string collateralCoin, string amount)
+ {
+ var body = new Dictionary
+ {
+ { "loanCurrency", loanCurrency },
+ { "collateralCoin", collateralCoin },
+ { "amount", amount }
+ };
+
+ var result = await this.SendSignedAsync(REPAY_COLLATERAL_FLEXIBLE, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_FLEXIBLE_LOANS = "/v5/crypto-loan-flexible/ongoing-coin";
+
+ ///
+ /// Flexible: Get Flexible loans
+ /// Query ongoing flexible loans.
+ ///
+ /// Optional loan coin
+ ///
+ public async Task GetFlexibleLoans(string? loanCurrency = null)
+ {
+ var query = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(query, ("loanCurrency", loanCurrency));
+
+ var result = await this.SendSignedAsync(GET_FLEXIBLE_LOANS, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_FLEXIBLE_BORROW_ORDERS_HISTORY = "/v5/crypto-loan-flexible/borrow-history";
+
+ ///
+ /// Flexible: Get Borrow Orders History
+ ///
+ /// Loan order ID
+ /// Loan coin
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetFlexibleBorrowOrdersHistory(
+ string? orderId = null,
+ string? loanCurrency = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("loanCurrency", loanCurrency),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_FLEXIBLE_BORROW_ORDERS_HISTORY, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_FLEXIBLE_REPAYMENT_ORDERS_HISTORY = "/v5/crypto-loan-flexible/repayment-history";
+
+ ///
+ /// Flexible: Get Repayment Orders History
+ ///
+ /// Repayment transaction ID
+ /// Loan coin
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetFlexibleRepaymentOrdersHistory(
+ string? repayId = null,
+ string? loanCurrency = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("repayId", repayId),
+ ("loanCurrency", loanCurrency),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_FLEXIBLE_REPAYMENT_ORDERS_HISTORY, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_SUPPLYING_MARKET_FIXED = "/v5/crypto-loan-fixed/supply-order-quote";
+
+ ///
+ /// Fixed: Get Supplying Market
+ /// Public. Check available counterparty borrow orders for supplying.
+ ///
+ /// Coin name
+ /// apy | term | quantity
+ /// 7 | 14 | 30 | 90 | 180
+ /// 0 asc (default), 1 desc
+ /// [1,100], default 10
+ ///
+ public async Task GetSupplyingMarketFixed(
+ string orderCurrency,
+ string orderBy,
+ int? term = null,
+ int? sort = null,
+ int? limit = null)
+ {
+ var query = new Dictionary
+ {
+ { "orderCurrency", orderCurrency },
+ { "orderBy", orderBy }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("term", term),
+ ("sort", sort),
+ ("limit", limit)
+ );
+
+ var result = await this.SendPublicAsync(GET_SUPPLYING_MARKET_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_BORROWING_MARKET_FIXED = "/v5/crypto-loan-fixed/borrow-order-quote";
+
+ ///
+ /// Fixed: Get Borrowing Market
+ /// Public. Check available counterparty supply orders for borrowing.
+ ///
+ /// Coin name
+ /// apy | term | quantity
+ /// 7 | 14 | 30 | 90 | 180
+ /// 0 asc (default), 1 desc
+ /// [1,100], default 10
+ ///
+ public async Task GetBorrowingMarketFixed(
+ string orderCurrency,
+ string orderBy,
+ int? term = null,
+ int? sort = null,
+ int? limit = null)
+ {
+ var query = new Dictionary
+ {
+ { "orderCurrency", orderCurrency },
+ { "orderBy", orderBy }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("term", term),
+ ("sort", sort),
+ ("limit", limit)
+ );
+
+ var result = await this.SendPublicAsync(GET_BORROWING_MARKET_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string CREATE_BORROW_ORDER_FIXED = "/v5/crypto-loan-fixed/borrow";
+
+ ///
+ /// Fixed: Create Borrow Order
+ /// Create a fixed-term borrow order. Funds move to/from Funding wallet.
+ ///
+ /// Currency to borrow
+ /// Amount to borrow
+ /// Annual interest rate, e.g., "0.02"
+ /// 7 | 14 | 30 | 90 | 180 (days)
+ /// "true" to enable, "false" to disable
+ /// Optional list of (currency, amount), up to 100
+ ///
+ public async Task CreateBorrowOrderFixed(
+ string orderCurrency,
+ string orderAmount,
+ string annualRate,
+ string term,
+ string? autoRepay = null,
+ IEnumerable<(string currency, string amount)>? collateralList = null)
+ {
+ var body = new Dictionary
+ {
+ { "orderCurrency", orderCurrency },
+ { "orderAmount", orderAmount },
+ { "annualRate", annualRate },
+ { "term", term }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body, ("autoRepay", autoRepay));
+
+ if (collateralList != null)
+ {
+ body["collateralList"] = collateralList
+ .Select(x => new Dictionary
+ {
+ { "currency", x.currency },
+ { "amount", x.amount }
+ }).ToList();
+ }
+
+ var result = await this.SendSignedAsync(CREATE_BORROW_ORDER_FIXED, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string CREATE_SUPPLY_ORDER_FIXED = "/v5/crypto-loan-fixed/supply";
+
+ ///
+ /// Fixed: Create Supply Order
+ /// Create a fixed-term supply order.
+ ///
+ /// Currency to supply
+ /// Amount to supply
+ /// Annual interest rate, e.g., "0.02"
+ /// 7 | 14 | 30 | 90 | 180 (days)
+ ///
+ public async Task CreateSupplyOrderFixed(
+ string orderCurrency,
+ string orderAmount,
+ string annualRate,
+ string term)
+ {
+ var body = new Dictionary
+ {
+ { "orderCurrency", orderCurrency },
+ { "orderAmount", orderAmount },
+ { "annualRate", annualRate },
+ { "term", term }
+ };
+
+ var result = await this.SendSignedAsync(CREATE_SUPPLY_ORDER_FIXED, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string CANCEL_BORROW_ORDER_FIXED = "/v5/crypto-loan-fixed/borrow-order-cancel";
+
+ ///
+ /// Fixed: Cancel Borrow Order
+ /// Cancel a fixed borrow order.
+ ///
+ /// Fixed borrow order ID
+ ///
+ public async Task CancelBorrowOrderFixed(string orderId)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId }
+ };
+
+ var result = await this.SendSignedAsync(CANCEL_BORROW_ORDER_FIXED, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string CANCEL_SUPPLY_ORDER_FIXED = "/v5/crypto-loan-fixed/supply-order-cancel";
+
+ ///
+ /// Fixed: Cancel Supply Order
+ /// Cancel a fixed supply order.
+ ///
+ /// Fixed supply order ID
+ ///
+ public async Task CancelSupplyOrderFixed(string orderId)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId }
+ };
+
+ var result = await this.SendSignedAsync(CANCEL_SUPPLY_ORDER_FIXED, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_BORROW_CONTRACT_INFO_FIXED = "/v5/crypto-loan-fixed/borrow-contract-info";
+
+ ///
+ /// Fixed: Get Borrow Contract Info
+ /// Spot trade permission required. Returns fixed-term borrow contracts.
+ ///
+ /// Loan order ID
+ /// Loan ID
+ /// Loan coin
+ /// 7 | 14 | 30 | 90 | 180
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetBorrowContractInfoFixed(
+ string? orderId = null,
+ string? loanId = null,
+ string? orderCurrency = null,
+ string? term = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("loanId", loanId),
+ ("orderCurrency", orderCurrency),
+ ("term", term),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_BORROW_CONTRACT_INFO_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_SUPPLY_CONTRACT_INFO_FIXED = "/v5/crypto-loan-fixed/supply-contract-info";
+
+ ///
+ /// Fixed: Get Supply Contract Info
+ /// Spot trade permission required. Returns fixed-term supply contracts.
+ ///
+ /// Supply order ID
+ /// Supply contract ID
+ /// Supply coin
+ /// 7 | 14 | 30 | 90 | 180
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetSupplyContractInfoFixed(
+ string? orderId = null,
+ string? supplyId = null,
+ string? supplyCurrency = null,
+ string? term = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("supplyId", supplyId),
+ ("supplyCurrency", supplyCurrency),
+ ("term", term),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_SUPPLY_CONTRACT_INFO_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_BORROW_ORDER_INFO_FIXED = "/v5/crypto-loan-fixed/borrow-order-info";
+
+ ///
+ /// Fixed: Get Borrow Order Info
+ /// Spot trade permission required. Query fixed borrow orders.
+ ///
+ /// Loan order ID
+ /// Loan coin
+ /// 1 matching; 2 partially filled and cancelled; 3 fully filled; 4 cancelled
+ /// 7 | 14 | 30 | 90 | 180
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetBorrowOrderInfoFixed(
+ string? orderId = null,
+ string? orderCurrency = null,
+ string? state = null,
+ string? term = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("orderCurrency", orderCurrency),
+ ("state", state),
+ ("term", term),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_BORROW_ORDER_INFO_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_SUPPLY_ORDER_INFO_FIXED = "/v5/crypto-loan-fixed/supply-order-info";
+
+ ///
+ /// Fixed: Get Supply Order Info
+ /// Spot trade permission required. Query fixed supply orders.
+ ///
+ /// Supply order ID
+ /// Supply coin
+ /// 1 matching; 2 partially filled and cancelled; 3 fully filled; 4 cancelled
+ /// 7 | 14 | 30 | 90 | 180
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetSupplyOrderInfoFixed(
+ string? orderId = null,
+ string? orderCurrency = null,
+ string? state = null,
+ string? term = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("orderId", orderId),
+ ("orderCurrency", orderCurrency),
+ ("state", state),
+ ("term", term),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_SUPPLY_ORDER_INFO_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string REPAY_FIXED_LOAN = "/v5/crypto-loan-fixed/fully-repay";
+
+ ///
+ /// Fixed: Repay
+ /// Fully repay a fixed loan. Pass either loanId or loanCurrency.
+ ///
+ /// Loan contract ID
+ /// Loan coin
+ ///
+ public async Task RepayFixedLoan(string? loanId = null, string? loanCurrency = null)
+ {
+ var body = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("loanId", loanId),
+ ("loanCurrency", loanCurrency)
+ );
+
+ var result = await this.SendSignedAsync(REPAY_FIXED_LOAN, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string REPAY_COLLATERAL_FIXED = "/v5/crypto-loan-fixed/repay-collateral";
+
+ ///
+ /// Fixed: Collateral Repayment
+ /// Pays interest first, then principal. If is null, fixed-currency offset logic applies.
+ ///
+ /// Loan currency
+ /// Collateral currencies, comma-separated
+ /// Repay amount
+ /// Loan contract ID (optional)
+ ///
+ public async Task RepayCollateralFixed(string loanCurrency, string collateralCoin, string amount, string? loanId = null)
+ {
+ var body = new Dictionary
+ {
+ { "loanCurrency", loanCurrency },
+ { "collateralCoin", collateralCoin },
+ { "amount", amount }
+ };
+ BybitParametersUtils.AddOptionalParameters(body, ("loanId", loanId));
+
+ var result = await this.SendSignedAsync(REPAY_COLLATERAL_FIXED, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_REPAYMENT_HISTORY_FIXED = "/v5/crypto-loan-fixed/repayment-history";
+
+ ///
+ /// Fixed: Get Repayment History
+ /// Spot trade permission required. Paginated.
+ ///
+ /// Repayment order ID
+ /// Loan coin name
+ /// [1,100], default 10
+ /// pagination cursor
+ ///
+ public async Task GetRepaymentHistoryFixed(
+ string? repayId = null,
+ string? loanCurrency = null,
+ string? limit = null,
+ string? cursor = null)
+ {
+ var query = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("repayId", repayId),
+ ("loanCurrency", loanCurrency),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+
+ var result = await this.SendSignedAsync(GET_REPAYMENT_HISTORY_FIXED, HttpMethod.Get, query: query);
+ return result;
+ }
+ }
+}
diff --git a/Src/Common/ApiServiceImp/BybitP2PService.cs b/Src/Common/ApiServiceImp/BybitP2PService.cs
new file mode 100644
index 0000000..0d6ffdb
--- /dev/null
+++ b/Src/Common/ApiServiceImp/BybitP2PService.cs
@@ -0,0 +1,504 @@
+using bybit.net.api.Services;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace bybit.net.api.ApiServiceImp
+{
+ internal class BybitP2PService : BybitApiService
+ {
+ public BybitP2PService(string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : this(httpClient: new HttpClient(), apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ public BybitP2PService(HttpClient httpClient, string apiKey, string apiSecret, string? url = null, string recvWindow = BybitConstants.DEFAULT_REC_WINDOW, bool debugMode = false)
+ : base(httpClient: httpClient, apiKey: apiKey, apiSecret: apiSecret, url: url, recvWindow: recvWindow, debugMode: debugMode)
+ {
+ }
+
+ private const string GET_P2P_ADS = "/v5/p2p/item/online";
+
+ ///
+ /// Get Ads
+ /// Query online P2P ads.
+ ///
+ /// Token ID, e.g., USDT
+ /// Currency ID, e.g., USD
+ /// "0" buy; "1" sell
+ /// Page number, default 1
+ /// Page size, default 10
+ ///
+ public async Task GetAds(string tokenId, string currencyId, string side, string? page = null, string? size = null)
+ {
+ var body = new Dictionary
+ {
+ { "tokenId", tokenId },
+ { "currencyId", currencyId },
+ { "side", side }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("page", page),
+ ("size", size)
+ );
+
+ var result = await this.SendPublicAsync(GET_P2P_ADS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string POST_P2P_AD = "/v5/p2p/item/create";
+
+ ///
+ /// Post Ad
+ /// Create a P2P advertisement.
+ /// Note: For HTTP POST, parameters are sent via query: body.
+ ///
+ /// e.g., USDT
+ /// e.g., USD
+ /// "0" buy; "1" sell
+ /// "0" fixed; "1" floating
+ /// Premium for floating rate
+ /// Price
+ /// Min transaction amount
+ /// Max transaction amount
+ /// Ad description (<=900 chars)
+ ///
+ /// Required object with preference fields. Pass as a Dictionary<string, object> containing any of:
+ /// hasUnPostAd,isKyc,isEmail,isMobile,hasRegisterTime,registerTimeThreshold,orderFinishNumberDay30,completeRateDay30,
+ /// nationalLimit,hasOrderFinishNumberDay30,hasCompleteRateDay30,hasNationalLimit
+ ///
+ /// Payment method type IDs (len ≤ 5)
+ /// Token quantity in the ad
+ /// Payment period in minutes
+ /// "ORIGIN" or "BULK"
+ ///
+ public async Task PostAd(
+ string tokenId,
+ string currencyId,
+ string side,
+ string priceType,
+ string premium,
+ string price,
+ string minAmount,
+ string maxAmount,
+ string remark,
+ Dictionary tradingPreferenceSet,
+ IEnumerable paymentIds,
+ string quantity,
+ string paymentPeriod,
+ string itemType)
+ {
+ var body = new Dictionary
+ {
+ { "tokenId", tokenId },
+ { "currencyId", currencyId },
+ { "side", side },
+ { "priceType", priceType },
+ { "premium", premium },
+ { "price", price },
+ { "minAmount", minAmount },
+ { "maxAmount", maxAmount },
+ { "remark", remark },
+ { "tradingPreferenceSet", tradingPreferenceSet },
+ { "paymentIds", paymentIds?.ToArray() ?? Array.Empty() },
+ { "quantity", quantity },
+ { "paymentPeriod", paymentPeriod },
+ { "itemType", itemType }
+ };
+
+ var result = await this.SendSignedAsync(POST_P2P_AD, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string REMOVE_P2P_AD = "/v5/p2p/item/cancel";
+
+ ///
+ /// Remove Ad
+ /// Cancel a P2P advertisement.
+ ///
+ /// Advertisement ID
+ ///
+ public async Task RemoveAd(string itemId)
+ {
+ var body = new Dictionary
+ {
+ { "itemId", itemId }
+ };
+
+ var result = await this.SendSignedAsync(REMOVE_P2P_AD, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string UPDATE_RELIST_P2P_AD = "/v5/p2p/item/update";
+
+ ///
+ /// Update / Relist Ad
+ /// Modify or re-online a P2P advertisement.
+ /// Note: For HTTP POST, parameters are sent via query: body.
+ ///
+ /// Advertisement ID
+ /// "0" fixed; "1" floating
+ /// Floating ratio
+ /// Price per token
+ /// Min amount (fiat)
+ /// Max amount (fiat)
+ /// Ad description (<=900 chars)
+ ///
+ /// Preference fields as Dictionary<string, object>:
+ /// hasUnPostAd,isKyc,isEmail,isMobile,hasRegisterTime,registerTimeThreshold,orderFinishNumberDay30,
+ /// completeRateDay30,nationalLimit,hasOrderFinishNumberDay30,hasCompleteRateDay30,hasNationalLimit
+ ///
+ /// Payment method type IDs (len ≤ 5)
+ /// "MODIFY" or "ACTIVE"
+ /// Token quantity
+ /// Payment period in minutes
+ ///
+ public async Task UpdateOrRelistAd(
+ string id,
+ string priceType,
+ string premium,
+ string price,
+ string minAmount,
+ string maxAmount,
+ string remark,
+ Dictionary tradingPreferenceSet,
+ IEnumerable paymentIds,
+ string actionType,
+ string quantity,
+ string paymentPeriod)
+ {
+ var body = new Dictionary
+ {
+ { "id", id },
+ { "priceType", priceType },
+ { "premium", premium },
+ { "price", price },
+ { "minAmount", minAmount },
+ { "maxAmount", maxAmount },
+ { "remark", remark },
+ { "tradingPreferenceSet", tradingPreferenceSet },
+ { "paymentIds", paymentIds?.ToArray() ?? Array.Empty() },
+ { "actionType", actionType },
+ { "quantity", quantity },
+ { "paymentPeriod", paymentPeriod }
+ };
+
+ var result = await this.SendSignedAsync(UPDATE_RELIST_P2P_AD, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_MY_P2P_ADS = "/v5/p2p/item/personal/list";
+
+ ///
+ /// Get My Ads
+ /// Query your P2P advertisements.
+ /// Note: POST parameters go via query: body.
+ ///
+ /// Advertisement ID
+ /// 1 Sold Out; 2 Available
+ /// 0 buy; 1 sell
+ /// e.g., USDT
+ /// default 1
+ /// default 10
+ /// e.g., USD
+ ///
+ public async Task GetMyAds(
+ string? itemId = null,
+ string? status = null,
+ string? side = null,
+ string? tokenId = null,
+ string? page = null,
+ string? size = null,
+ string? currencyId = null)
+ {
+ var body = new Dictionary();
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("itemId", itemId),
+ ("status", status),
+ ("side", side),
+ ("tokenId", tokenId),
+ ("page", page),
+ ("size", size),
+ ("currencyId", currencyId)
+ );
+
+ var result = await this.SendSignedAsync(GET_MY_P2P_ADS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_MY_AD_DETAILS = "/v5/p2p/item/info";
+
+ ///
+ /// Get My Ad Details
+ /// Returns detailed info for a specific P2P advertisement.
+ /// Note: POST parameters are sent via query: body.
+ ///
+ /// Advertisement ID
+ ///
+ public async Task GetMyAdDetails(string itemId)
+ {
+ var body = new Dictionary
+ {
+ { "itemId", itemId }
+ };
+
+ var result = await this.SendSignedAsync(GET_MY_AD_DETAILS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_ALL_ORDERS = "/v5/p2p/order/simplifyList";
+
+ ///
+ /// Get All Orders
+ /// Paginated P2P orders. POST uses query: body.
+ ///
+ /// Page number
+ /// Rows per page
+ /// Order status filter
+ /// Begin time
+ /// End time
+ /// Token id
+ /// Sides filter, e.g., [0] or [1,0]
+ ///
+ public async Task GetAllOrders(
+ int page,
+ int size,
+ int? status = null,
+ string? beginTime = null,
+ string? endTime = null,
+ string? tokenId = null,
+ IEnumerable? side = null)
+ {
+ var body = new Dictionary
+ {
+ { "page", page },
+ { "size", size }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("status", status),
+ ("beginTime", beginTime),
+ ("endTime", endTime),
+ ("tokenId", tokenId),
+ ("side", side?.ToArray())
+ );
+
+ var result = await this.SendSignedAsync(GET_P2P_ALL_ORDERS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_ORDER_DETAIL = "/v5/p2p/order/info";
+
+ ///
+ /// Get Order Detail
+ /// Returns detailed info for a P2P order. POST uses query: body.
+ ///
+ /// Order ID
+ ///
+ public async Task GetOrderDetail(string orderId)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId }
+ };
+
+ var result = await this.SendSignedAsync(GET_P2P_ORDER_DETAIL, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_PENDING_ORDERS = "/v5/p2p/order/pending/simplifyList";
+
+ ///
+ /// Get Pending Orders
+ /// POST uses query: body.
+ ///
+ /// Page number
+ /// Rows per page
+ /// Optional status filter
+ /// Begin time
+ /// End time
+ /// Token id
+ /// Sides filter, e.g., [0] or [0,1]
+ ///
+ public async Task GetPendingOrders(
+ int page,
+ int size,
+ int? status = null,
+ string? beginTime = null,
+ string? endTime = null,
+ string? tokenId = null,
+ IEnumerable? side = null)
+ {
+ var body = new Dictionary
+ {
+ { "page", page },
+ { "size", size }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("status", status),
+ ("beginTime", beginTime),
+ ("endTime", endTime),
+ ("tokenId", tokenId),
+ ("side", side?.ToArray())
+ );
+
+ var result = await this.SendSignedAsync(GET_P2P_PENDING_ORDERS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string MARK_P2P_ORDER_AS_PAID = "/v5/p2p/order/pay";
+
+ ///
+ /// Mark Order as Paid
+ /// Marks a P2P order as paid using a specific payment method.
+ /// Note: For HTTP POST, parameters are sent via query: body.
+ ///
+ /// Order ID
+ /// Payment method type
+ /// Payment method ID
+ ///
+ public async Task MarkOrderAsPaid(string orderId, string paymentType, string paymentId)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId },
+ { "paymentType", paymentType },
+ { "paymentId", paymentId }
+ };
+
+ var result = await this.SendSignedAsync(MARK_P2P_ORDER_AS_PAID, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string RELEASE_P2P_ORDER_ASSETS = "/v5/p2p/order/finish";
+
+ ///
+ /// Release Assets
+ /// Release assets for a P2P order.
+ /// Note: For HTTP POST, parameters are sent via query: body.
+ ///
+ /// Order ID
+ ///
+ public async Task ReleaseAssets(string orderId)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId }
+ };
+
+ var result = await this.SendSignedAsync(RELEASE_P2P_ORDER_ASSETS, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string SEND_P2P_CHAT_MESSAGE = "/v5/p2p/order/message/send";
+
+ ///
+ /// Send Chat Message
+ /// Send a text or file message to the P2P order chat.
+ /// Note: For HTTP POST, parameters are sent via query: body.
+ ///
+ /// Text content or URL of the file
+ /// str | pic | pdf | video
+ /// Order ID
+ /// Client message UUID
+ /// Optional filename for pic/pdf/video
+ ///
+ public async Task SendChatMessage(
+ string message,
+ string contentType,
+ string orderId,
+ string msgUuid,
+ string? fileName = null)
+ {
+ var body = new Dictionary
+ {
+ { "message", message },
+ { "contentType", contentType },
+ { "orderId", orderId },
+ { "msgUuid", msgUuid }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(body, ("fileName", fileName));
+
+ var result = await this.SendSignedAsync(SEND_P2P_CHAT_MESSAGE, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_CHAT_MESSAGE = "/v5/p2p/order/message/listpage";
+
+ ///
+ /// Get Chat Message
+ /// Paginated chat messages for a P2P order. POST uses query: body.
+ ///
+ /// Order ID
+ /// Page size
+ /// Current page number
+ ///
+ public async Task GetChatMessage(string orderId, string size, string? currentPage = null)
+ {
+ var body = new Dictionary
+ {
+ { "orderId", orderId },
+ { "size", size }
+ };
+ BybitParametersUtils.AddOptionalParameters(body, ("currentPage", currentPage));
+
+ var result = await this.SendSignedAsync(GET_P2P_CHAT_MESSAGE, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_ACCOUNT_INFORMATION = "/v5/p2p/user/personal/info";
+
+ ///
+ /// Get Account Information
+ /// Returns your P2P account profile. POST uses query: body with no parameters.
+ ///
+ ///
+ public async Task GetAccountInformation()
+ {
+ var body = new Dictionary(); // empty POST payload goes in query
+ var result = await this.SendSignedAsync(GET_P2P_ACCOUNT_INFORMATION, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_COUNTERPARTY_USER_INFO = "/v5/p2p/user/order/personal/info";
+
+ ///
+ /// Get Counterparty User Info
+ /// Returns profile for the counterparty of a P2P order.
+ /// Note: HTTP POST uses query: body.
+ ///
+ /// Counterparty User ID
+ /// Order ID
+ ///
+ public async Task GetCounterpartyUserInfo(string? originalUid = null, string? orderId = null)
+ {
+ var body = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(body,
+ ("originalUid", originalUid),
+ ("orderId", orderId)
+ );
+
+ var result = await this.SendSignedAsync(GET_P2P_COUNTERPARTY_USER_INFO, HttpMethod.Post, query: body);
+ return result;
+ }
+
+ private const string GET_P2P_USER_PAYMENT = "/v5/p2p/user/payment/list";
+
+ ///
+ /// Get User Payment
+ /// Returns your saved P2P payment methods. POST sends params via query: body (none here).
+ ///
+ public async Task GetUserPayment()
+ {
+ var body = new Dictionary(); // empty payload
+ var result = await this.SendSignedAsync(GET_P2P_USER_PAYMENT, HttpMethod.Post, query: body);
+ return result;
+ }
+ }
+}
diff --git a/Src/Common/ApiServiceImp/BybitPositionService.cs b/Src/Common/ApiServiceImp/BybitPositionService.cs
index 9462839..097f243 100644
--- a/Src/Common/ApiServiceImp/BybitPositionService.cs
+++ b/Src/Common/ApiServiceImp/BybitPositionService.cs
@@ -103,31 +103,6 @@ public BybitPositionService(HttpClient httpClient, string apiKey, string apiSecr
return result;
}
- private const string SET_TPSL_MODE = "/v5/position/set-tpsl-mode";
- ///
- /// To some extent, this endpoint is depreciated because now tpsl is based on order level. This API was used for position level change before.
- /// However, you still can use it to set an implicit tpsl mode for a certain symbol because when you don't pass "tpslMode" in the place order or trading stop request, system will get the tpslMode by the default setting.
- /// Set TP/SL mode to Full or Partial
- /// Unified account covers: USDT perpetual / Inverse contract
- /// Classic account covers: USDT perpetual / Inverse contract
- ///
- ///
- ///
- ///
- /// tpSlMode
- [Obsolete]
- public async Task SetTPSLMode(Category category, string symbol, TpslMode tpslMode)
- {
- var query = new Dictionary { { "category", category.Value } };
-
- BybitParametersUtils.AddOptionalParameters(query,
- ("symbol", symbol),
- ("tpslMode", tpslMode.Value)
- );
- var result = await this.SendSignedAsync(SET_TPSL_MODE, HttpMethod.Post, query: query);
- return result;
- }
-
private const string SWITCH_POSITION_MODE = "/v5/position/switch-mode";
///
/// It supports to switch the position mode for USDT perpetual and Inverse futures. If you are in one-way Mode, you can only open one position on Buy or Sell side. If you are in hedge mode, you can open both Buy and Sell side positions simultaneously.
@@ -155,32 +130,6 @@ public BybitPositionService(HttpClient httpClient, string apiKey, string apiSecr
return result;
}
- private const string SET_RISK_LIMIT = "/v5/position/set-risk-limit";
- ///
- /// The risk limit will limit the maximum position value you can hold under different margin requirements. If you want to hold a bigger position size, you need more margin. This interface can set the risk limit of a single position. If the order exceeds the current risk limit when placing an order, it will be rejected. Click here to learn more about risk limit.
- /// Unified account covers: USDT perpetual / USDC contract / Inverse contract
- /// Classic account covers: USDT perpetual / Inverse contract
- /// Set the risk limit of the position.You can get risk limit information for each symbol here.
- ///
- ///
- ///
- ///
- ///
- /// Risk Limit Info
- [Obsolete]
- public async Task SetPositionRiskLimit(Category category, string symbol, int riskId, PositionIndex? positionIdx = null)
- {
- var query = new Dictionary { { "category", category.Value } };
-
- BybitParametersUtils.AddOptionalParameters(query,
- ("symbol", symbol),
- ("coin", riskId),
- ("positionIdx", positionIdx?.Value)
- );
- var result = await this.SendSignedAsync(SET_RISK_LIMIT, HttpMethod.Post, query: query);
- return result;
- }
-
private const string SET_TRADING_STOP = "/v5/position/trading-stop";
///
/// Set the take profit, stop loss or trailing stop for the position.
@@ -389,5 +338,33 @@ public BybitPositionService(HttpClient httpClient, string apiKey, string apiSecr
var result = await this.SendSignedAsync(MOVE_POSITION_HISTORY, HttpMethod.Get, query: query);
return result;
}
+
+ private const string GET_CLOSED_OPTIONS_POSITIONS = "/v5/position/get-closed-positions";
+
+ ///
+ /// Get Closed Options Positions
+ /// Query user's closed options positions, sorted by closeTime in descending order.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public async Task GetClosedOptionsPositions(Category category, string? symbol = null, int? startTime = null, int? endTime = null, int? limit = null, string? cursor = null)
+ {
+ var query = new Dictionary { { "category", category.Value } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("symbol", symbol),
+ ("startTime", startTime),
+ ("endTime", endTime),
+ ("limit", limit),
+ ("cursor", cursor)
+ );
+ var result = await this.SendSignedAsync(GET_CLOSED_OPTIONS_POSITIONS, HttpMethod.Get, query: query);
+ return result;
+ }
}
}
diff --git a/Src/Common/ApiServiceImp/BybitSpotMarginService.cs b/Src/Common/ApiServiceImp/BybitSpotMarginService.cs
index 4861f5a..fb8b0e2 100644
--- a/Src/Common/ApiServiceImp/BybitSpotMarginService.cs
+++ b/Src/Common/ApiServiceImp/BybitSpotMarginService.cs
@@ -238,6 +238,54 @@ public BybitSpotMarginService(HttpClient httpClient, string apiKey, string apiSe
var result = await this.SendSignedAsync(SPOT_MARGIN_STATE, HttpMethod.Post, query: query);
return result;
}
+
+ private const string GET_TIERED_COLLATERAL_RATIO = "/v5/spot-margin-trade/collateral";
+
+ ///
+ /// Get Tiered Collateral Ratio
+ /// UTA loan tiered collateral ratios. Public endpoint.
+ ///
+ /// Optional coin, uppercase
+ ///
+ public async Task GetTieredCollateralRatio(string? currency = null)
+ {
+ var query = new Dictionary();
+ BybitParametersUtils.AddOptionalParameters(query, ("currency", currency));
+
+ var result = await this.SendPublicAsync(GET_TIERED_COLLATERAL_RATIO, HttpMethod.Get, query: query);
+ return result;
+ }
+
+ private const string GET_HISTORICAL_INTEREST_RATE = "/v5/spot-margin-trade/interest-rate-history";
+
+ ///
+ /// Get Historical Interest Rate
+ /// Auth required. Unified account only. Up to 6 months history.
+ /// If time range omitted, returns last 7 days. If provided, endTime - startTime <= 30 days.
+ ///
+ /// Coin, uppercase
+ /// VIP level (encode spaces, e.g., "No%20VIP")
+ /// ms
+ /// ms
+ ///
+ public async Task GetHistoricalInterestRate(
+ string currency,
+ string? vipLevel = null,
+ long? startTime = null,
+ long? endTime = null)
+ {
+ var query = new Dictionary { { "currency", currency } };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("vipLevel", vipLevel),
+ ("startTime", startTime),
+ ("endTime", endTime)
+ );
+
+ var result = await this.SendSignedAsync(GET_HISTORICAL_INTEREST_RATE, HttpMethod.Get, query: query);
+ return result;
+ }
+
#endregion
#region Spot Leverage Token
diff --git a/Src/Common/ApiServiceImp/BybitTradeService.cs b/Src/Common/ApiServiceImp/BybitTradeService.cs
index 2f6ab7c..6ed30f0 100644
--- a/Src/Common/ApiServiceImp/BybitTradeService.cs
+++ b/Src/Common/ApiServiceImp/BybitTradeService.cs
@@ -530,5 +530,83 @@ public BybitTradeService(HttpClient httpClient, string apiKey, string apiSecret,
var result = await this.SendSignedAsync(EXECUTION_LIST, HttpMethod.Get, query: query);
return result;
}
+
+ private const string PRE_CHECK_ORDER = "/v5/order/pre-check";
+
+ ///
+ /// Pre Check Order
+ /// This endpoint is used to calculate the changes in IMR and MMR of UTA account before and after placing an order.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public async Task PreCheckOrder(Category category, string symbol, Side side, OrderType orderType, string qty, string? price = null, TimeInForce? timeInForce = null, int? isLeverage = null, int? triggerDirection = null,
+ string? orderFilter = null, string? triggerPrice = null, TriggerBy? triggerBy = null, string? orderIv = null, int? positionIdx = null, string? orderLinkId = null, string? takeProfit = null,
+ string? stopLoss = null, TriggerBy? tpTriggerBy = null, TriggerBy? slTriggerBy = null, bool? reduceOnly = null, bool? closeOnTrigger = null, SmpType? smpType = null, bool? mmp = null, TpslMode? tpslMode = null,
+ string? tpLimitPrice = null, string? slLimitPrice = null, OrderType? tpOrderType = null, OrderType? slOrderType = null)
+ {
+ var query = new Dictionary
+ {
+ { "category", category.Value },
+ { "symbol", symbol },
+ { "side", side.Value },
+ { "orderType", orderType.Value },
+ { "qty", qty }
+ };
+
+ BybitParametersUtils.AddOptionalParameters(query,
+ ("price", price),
+ ("timeInForce", timeInForce?.Value),
+ ("isLeverage", isLeverage),
+ ("triggerDirection", triggerDirection),
+ ("orderFilter", orderFilter),
+ ("triggerPrice", triggerPrice),
+ ("triggerBy", triggerBy?.Value),
+ ("orderIv", orderIv),
+ ("positionIdx", positionIdx),
+ ("orderLinkId", orderLinkId),
+ ("takeProfit", takeProfit),
+ ("stopLoss", stopLoss),
+ ("tpTriggerBy", tpTriggerBy?.Value),
+ ("slTriggerBy", slTriggerBy?.Value),
+ ("reduceOnly", reduceOnly),
+ ("closeOnTrigger", closeOnTrigger),
+ ("smpType", smpType?.Value),
+ ("mmp", mmp),
+ ("tpslMode", tpslMode?.Value),
+ ("tpLimitPrice", tpLimitPrice),
+ ("slLimitPrice", slLimitPrice),
+ ("tpOrderType", tpOrderType?.Value),
+ ("slOrderType", slOrderType?.Value)
+ );
+ var result = await this.SendSignedAsync(PRE_CHECK_ORDER, HttpMethod.Post, query: query);
+ return result;
+ }
}
}
diff --git a/Src/Common/ApiServiceImp/BybitUserService.cs b/Src/Common/ApiServiceImp/BybitUserService.cs
index 2ef4520..a38a367 100644
--- a/Src/Common/ApiServiceImp/BybitUserService.cs
+++ b/Src/Common/ApiServiceImp/BybitUserService.cs
@@ -294,6 +294,62 @@ public BybitUserService(HttpClient httpClient, string apiKey, string apiSecret,
return result;
}
+ private const string GET_SUB_UID_LIST_LIMITED = "/v5/user/query-sub-members";
+
+ ///