From 136fa1de29f9f4c8471e79bab6c8f2ff7b772609 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Thu, 6 Nov 2025 15:15:51 -0800 Subject: [PATCH] Explore if allowPrerelease fixes vs22 preview rejections I edited the json wrong in https://github.com/dotnet/sdk/pull/51558. If this is all that's needed, the fix can be simpler. I think this likely isn't the case since there are tests with a custom global.json file, but it's worth trying. --- global.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/global.json b/global.json index 8d0dd39886de..e3098061dfbf 100644 --- a/global.json +++ b/global.json @@ -16,10 +16,13 @@ "native-tools": { "cmake": "latest" }, + "sdk": { + "allowPrerelease": true + }, "msbuild-sdks": { "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25515.2", "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.25515.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24217.1" } -} +} \ No newline at end of file