Skip to content

Commit f678945

Browse files
authored
fix: change rollForward to "latestMinor" in global.json (#912)
**Currently it is impossible to build System.IO.Abstractions with the latest Visual Studio version (v17.4.0) :-(** "latestMinor" means: > Uses the highest installed minor, feature band, and patch level that matches the requested major with a minor, feature band, and patch level that is greater or equal than the specified value. *See [Microsoft Documentation](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json#rollforward)*
1 parent 21e0270 commit f678945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"version": "6.0.403",
4-
"rollForward": "latestFeature"
4+
"rollForward": "latestMinor"
55
}
66
}

0 commit comments

Comments
 (0)