From 448752815fe3ec8f122bc8d917fba00a6bb5f9d7 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Mon, 9 Mar 2020 14:47:52 -0700 Subject: [PATCH] Upgrade .NET SDK to 2.1.804 --- PowerShellEditorServices.build.ps1 | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerShellEditorServices.build.ps1 b/PowerShellEditorServices.build.ps1 index 2c92b8f5f..109e9a73d 100644 --- a/PowerShellEditorServices.build.ps1 +++ b/PowerShellEditorServices.build.ps1 @@ -91,7 +91,7 @@ task SetupDotNet -Before Clean, Build, TestHost, TestServer, TestE2E { # Download the official installation script and run it $installScriptPath = "$([System.IO.Path]::GetTempPath())dotnet-install.$installScriptExt" - Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/v$script:RequiredSdkVersion/scripts/obtain/dotnet-install.$installScriptExt" -OutFile $installScriptPath + Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/sdk/master/scripts/obtain/dotnet-install.$installScriptExt" -OutFile $installScriptPath $env:DOTNET_INSTALL_DIR = "$PSScriptRoot/.dotnet" if (!$script:IsUnix) { diff --git a/global.json b/global.json index b354da963..0fe63c97e 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "2.1.802" + "version": "2.1.804" } }