Skip to content

Commit

Permalink
Fix src work if NETCore3.0 not installed (#55)
Browse files Browse the repository at this point in the history
* Fix src work if NETCore3.0 not installed

If you have installed .NET Core 3.1 but not 3.0 the source wouldn't load inside Visual Studio. By adding "rollForward": "minor" to global.json file, Visual Studio could find the 3.1 SDK.

https://docs.microsoft.com/en-us/dotnet/core/tools/global-json?tabs=netcore3x#rollforward
  • Loading branch information
0x414c49 authored and Eilon committed Jan 23, 2020
1 parent 5da8746 commit 0091ac1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "3.0.100"
"version": "3.0.100",
"rollForward": "minor"
}
}
}

0 comments on commit 0091ac1

Please sign in to comment.