Skip to content

Commit

Permalink
Set RollForward Behavior to Patch (#424)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
VMSolidus authored Jun 2, 2024
1 parent 201c11c commit 8e27a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"rollForward": "disable"
"rollForward": "patch"
}
}

0 comments on commit 8e27a83

Please sign in to comment.