From 8e27a833df67be6e0ef67abcbe316117d618829c Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sun, 2 Jun 2024 01:38:16 -0400 Subject: [PATCH] Set RollForward Behavior to Patch (#424) This is apparently a more desirable behavior for global.json, as it allows servers running any version of Dotnet 8.0.1xx to automatically switch to a newer version than the base. This update was apparently required for DS14, NS14, and Syndicate Station to work properly, since Linux servers can't actually run 8.0.100, and the earliest they can use is 8.0.105(which is still a viable version). --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 2244195a20..c8526b0a8b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { "version": "8.0.100", - "rollForward": "disable" + "rollForward": "patch" } }