From 015dcd7d8d99c8c442936825c65eafb5981ee654 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sun, 27 Jan 2019 12:17:53 +0100 Subject: [PATCH] Build: attempt to use .Net Core SDK 2.2.103 --- .travis.yml | 2 +- appveyor.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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()