Last active
October 2, 2022 21:45
-
-
Save IvanJosipovic/836c7499af8d3bb295c88b3d041d3da6 to your computer and use it in GitHub Desktop.
.Net Core global.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 3.1.x | |
| { | |
| "sdk": { | |
| "version": "3.1.0", | |
| "rollForward": "latestFeature" | |
| } | |
| } | |
| // 6.0.x | |
| { | |
| "sdk": { | |
| "version": "6.0.0", | |
| "rollForward": "latestFeature" | |
| } | |
| } | |
| // 7.0.x | |
| { | |
| "sdk": { | |
| "version": "7.0.0", | |
| "rollForward": "latestFeature", | |
| "allowPrerelease": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment