diff --git a/.travis.yml b/.travis.yml index 03aeca2..da36f1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ env: sudo: required #false dist: trusty -dotnet: 2.2.100 +dotnet: 2.2.103 mono: - latest os: diff --git a/appveyor.yml b/appveyor.yml index 7be3948..1b5ba37 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,8 +2,8 @@ image: Visual Studio 2017 init: - git config --global core.autocrlf true install: - # Download .NET Core SDK 2.1.403 and add to PATH - - ps: $urlCurrent = "https://dotnetcli.azureedge.net/dotnet/Sdk/2.2.100/dotnet-sdk-2.2.100-win-x64.zip" + # Download .NET Core SDK 2.2.103 and add to PATH + - ps: $urlCurrent = "https://dotnetcli.azureedge.net/dotnet/Sdk/2.2.103/dotnet-sdk-2.2.103-win-x64.zip" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk" - ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null - ps: $tempFileCurrent = [System.IO.Path]::GetTempFileName()