From 391ceec559cf9e4c568cbe6a792d32c0f3a8ca0a Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Mon, 3 Jul 2017 14:32:43 +0100 Subject: [PATCH] Update AppVeyor build to use .NET Core 2.0 Preview 3 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7de4d7c..8d5ed19 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 2.0 Preview 2 SDK and add to PATH - - ps: $urlCurrent = "https://dotnetcli.azureedge.net/dotnet/Sdk/2.0.0-preview2-006497/dotnet-sdk-2.0.0-preview2-006497-win-x64.zip" + # Download .NET Core 2.0 Preview 3 SDK and add to PATH + - ps: $urlCurrent = "https://dotnetcli.azureedge.net/dotnet/Sdk/2.0.0-preview3-006638/dotnet-sdk-2.0.0-preview3-006638-win-x64.zip" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk" - ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null - ps: $tempFileCurrent = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(), [System.IO.Path]::GetRandomFileName())