From 955937604fccff48cc2cbbf3c9bf52ed59ea8618 Mon Sep 17 00:00:00 2001 From: Alan Wang Date: Fri, 10 Apr 2026 04:40:28 -0700 Subject: [PATCH] fix: pin global.json to preview SDK version for Docker compatibility 10.0.100-preview.7 is semver-lower than 10.0.100, so no roll-forward policy can satisfy a 10.0.100 minimum from a preview SDK. Pin to 10.0.100-preview.7 as the minimum; latestFeature still selects 10.0.201 locally. Co-Authored-By: Claude Opus 4.6 (1M context) --- global.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/global.json b/global.json index a5175004..c9b80880 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,6 @@ { "sdk": { - "version": "10.0.100", - "allowPrerelease": true, + "version": "10.0.100-preview.7", "rollForward": "latestFeature" } }