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 diff --git a/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj b/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj index 7311261..bdcecb7 100644 --- a/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj +++ b/CryptoExchange.Net.UnitTests/CryptoExchange.Net.UnitTests.csproj @@ -1,8 +1,7 @@ - net5.0 - + netcoreapp5.0 false 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