From 9be57585be274f050865f6734802ddef900f3e03 Mon Sep 17 00:00:00 2001 From: Alan Wang Date: Fri, 10 Apr 2026 04:35:24 -0700 Subject: [PATCH] fix: allow prerelease SDK in global.json for Docker compatibility The 10.0-preview Docker image ships SDK 10.0.100-preview.7 but global.json required 10.0.201 with latestFeature roll-forward. Lower the minimum to 10.0.100 and set allowPrerelease so both the Docker preview SDK and the local GA SDK (10.0.201) are accepted. Co-Authored-By: Claude Opus 4.6 (1M context) --- global.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/global.json b/global.json index 8287d387..a5175004 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,7 @@ { "sdk": { - "version": "10.0.201", + "version": "10.0.100", + "allowPrerelease": true, "rollForward": "latestFeature" } }