From e44a95ffc60af478ce559ed1c0305816ed8e4f87 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Fri, 15 Nov 2024 10:01:36 -0800 Subject: [PATCH] Move to .NET 9 GA (#633) * Move to .NET 9 GA * Remove preview version install --- azure-pipelines-official.yml | 1 - azure-pipelines.yml | 1 - global.json | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index 527eff9..a4687d6 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -65,7 +65,6 @@ extends: displayName: 'Install .NET 9.x' inputs: version: '9.x' - includePreviewVersions: true - task: VSBuild@1 displayName: 'Build Solution' inputs: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 722faf3..db0b58c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -52,7 +52,6 @@ jobs: displayName: 'Install .NET 9.x' inputs: version: '9.x' - includePreviewVersions: true - task: VSBuild@1 displayName: 'Build (Visual Studio)' diff --git a/global.json b/global.json index 33fcda4..90c0ea7 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-rc.1.24452.12", + "version": "9.0.100", "rollForward": "latestMajor", "allowPrerelease": true },