From e42500386405186c6d92c0e225a6159ce694f756 Mon Sep 17 00:00:00 2001 From: Daniel Weber Date: Thu, 5 Oct 2023 10:37:24 +0200 Subject: [PATCH] Fix global.json. Version ranges are not supported in global.json, also, GitHub actions only supports the latestFeature option (see https://github.com/actions/setup-dotnet/issues/448) --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index 2077113c9..b79dd8fc7 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "7", - "rollForward": "latestMinor", + "version": "7.0.0", + "rollForward": "latestFeature", "allowPrerelease": false } } \ No newline at end of file