From d019c0557df689ba877b8a79b29cad86e2bc4ba9 Mon Sep 17 00:00:00 2001 From: Kir-Antipov Date: Sat, 27 Feb 2021 16:42:01 +0200 Subject: [PATCH 1/3] Made release builds deterministic --- CryptoExchange.Net/CryptoExchange.Net.csproj | 19 +++++++++++++++++++ global.json | 5 +++++ 2 files changed, 24 insertions(+) create mode 100644 global.json diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj index 91ddb6d..0bf799c 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.csproj +++ b/CryptoExchange.Net/CryptoExchange.Net.csproj @@ -8,7 +8,10 @@ A base package for implementing cryptocurrency exchange API's 3.6.1 3.6.0 + 3.6.0 false + git + https://github.com/JKorf/CryptoExchange.Net.git https://github.com/JKorf/CryptoExchange.Net en true @@ -17,6 +20,22 @@ 8.0 MIT + + + true + true + snupkg + true + true + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + CryptoExchange.Net.xml diff --git a/global.json b/global.json new file mode 100644 index 0000000..14f07fd --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "5.0.103" + } +} \ No newline at end of file From afc3e9ec6cb2123115b16328ddc181ad20b20a27 Mon Sep 17 00:00:00 2001 From: Kir-Antipov Date: Sat, 27 Feb 2021 16:42:12 +0200 Subject: [PATCH 2/3] Fixed travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e2b1f4c..aad775e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: csharp mono: none solution: CryptoExchange.Net.sln -dotnet: 3.0 +dotnet: 5.0.103 script: - dotnet build CryptoExchange.Net/CryptoExchange.Net.csproj --framework "netstandard2.1" - dotnet test CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj \ No newline at end of file From 8b200e5d343ff90c22ed3273168ee9dc10f632d0 Mon Sep 17 00:00:00 2001 From: Kir-Antipov Date: Sat, 27 Feb 2021 16:42:21 +0200 Subject: [PATCH 3/3] Moved tests to net 5 --- .../CryptoExchange.Net.UnitTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj b/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj index ed4890c..feaa30b 100644 --- a/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj +++ b/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj @@ -1,7 +1,7 @@ - netcoreapp3.0 + netcoreapp5.0 false