From d55070da3e622ab494ec151bcd2ea1b1aa3ccbd0 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Tue, 27 Oct 2020 03:51:29 +0100 Subject: [PATCH] Update to .NET Core SDK 3.1.302 (#681) This change updates the .NET Core SDK used by the Actions Runner to version 3.1.302 to address the issues that are caused by the following issue: https://github.com/dotnet/runtime/issues/13475 See #574 for more information. Fixes #574 --- src/dev.sh | 2 +- src/global.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dev.sh b/src/dev.sh index 43474c68c..15d396c2d 100755 --- a/src/dev.sh +++ b/src/dev.sh @@ -17,7 +17,7 @@ LAYOUT_DIR="$SCRIPT_DIR/../_layout" DOWNLOAD_DIR="$SCRIPT_DIR/../_downloads/netcore2x" PACKAGE_DIR="$SCRIPT_DIR/../_package" DOTNETSDK_ROOT="$SCRIPT_DIR/../_dotnetsdk" -DOTNETSDK_VERSION="3.1.100" +DOTNETSDK_VERSION="3.1.302" DOTNETSDK_INSTALLDIR="$DOTNETSDK_ROOT/$DOTNETSDK_VERSION" RUNNER_VERSION=$(cat runnerversion) diff --git a/src/global.json b/src/global.json index 7c332016b..2ae03c0b2 100644 --- a/src/global.json +++ b/src/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "3.1.100" + "version": "3.1.302" } -} \ No newline at end of file +}