From e6a0041c12ae15f9c7cb38170499fcf966ac521f Mon Sep 17 00:00:00 2001 From: Jason Ginchereau Date: Mon, 23 Oct 2023 10:24:58 -1000 Subject: [PATCH] Update to .NET 8.0 rc2 --- .ado/publish.yml | 8 ++++++-- global.json | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.ado/publish.yml b/.ado/publish.yml index b7742c98..3d5ec86c 100644 --- a/.ado/publish.yml +++ b/.ado/publish.yml @@ -61,7 +61,9 @@ jobs: displayName: Install .NET SDK using global.json inputs: packageType: sdk - useGlobalJson: true + useGlobalJson: false # Switch to true and remove explicit version after .NET 8 release + version: 8.0.x + includePreviewVersions: true - script: env displayName: Print environment @@ -131,7 +133,9 @@ jobs: displayName: Install .NET SDK using global.json inputs: packageType: sdk - useGlobalJson: true + useGlobalJson: false # Switch to true and remove explicit version after .NET 8 release + version: 8.0.x + includePreviewVersions: true - script: env displayName: Print environment diff --git a/global.json b/global.json index d817d631..f0d6d003 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100-rc.1", + "version": "8.0.100-rc.2", "allowPrerelease": true, "rollForward": "latestPatch" }