From 58fd9150b9b9d9ac3bde48ba106b165936cf2722 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Thu, 18 May 2017 11:37:40 +0100 Subject: [PATCH] Update AppVeyor build to use .NET Core 2.0 Preview 1 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d0f6bbc..9cf40d5 100755 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,8 +3,8 @@ init: install: - ps: Install-Product node 6.9.2 x64 # .NET Core SDK binaries - # Download .NET Core SDK and add to PATH - - ps: $urlCurrent = "https://download.microsoft.com/download/E/7/8/E782433E-7737-4E6C-BFBF-290A0A81C3D7/dotnet-dev-win-x64.1.0.4.zip" + # Download .NET Core 2.0 Preview 1 SDK and add to PATH + - ps: $urlCurrent = "https://download.microsoft.com/download/3/7/F/37F1CA21-E5EE-4309-9714-E914703ED05A/dotnet-dev-win-x64.2.0.0-preview1-005977.exe" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk" - ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null - ps: $tempFileCurrent = [System.IO.Path]::GetTempFileName()