From f54cdca99bf7e0a662de4141e8db353bb6384d25 Mon Sep 17 00:00:00 2001 From: MPCoreDeveloper Date: Wed, 2 Sep 2026 20:55:40 +0200 Subject: [PATCH] build(v2.1): pin SDK global.json to the full 11.0.100-preview.7.26381.103 build setup-dotnet/dotnet-install fails to resolve the short '11.0.100-preview.7' because the SDK artifact is only hosted under the full build number (builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.7.26381.103). Pinning the exact build (HTTP 200 verified) lets CI install it. --- global.json | 2 +- src/SharpCoreDB/global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index 6befc5b2..8976695e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.7", + "version": "11.0.100-preview.7.26381.103", "rollForward": "latestFeature", "allowPrerelease": true } diff --git a/src/SharpCoreDB/global.json b/src/SharpCoreDB/global.json index 6befc5b2..8976695e 100644 --- a/src/SharpCoreDB/global.json +++ b/src/SharpCoreDB/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.7", + "version": "11.0.100-preview.7.26381.103", "rollForward": "latestFeature", "allowPrerelease": true }