Skip to content

Instantly share code, notes, and snippets.

@IvanJosipovic
Last active October 2, 2022 21:45
Show Gist options
  • Select an option

  • Save IvanJosipovic/836c7499af8d3bb295c88b3d041d3da6 to your computer and use it in GitHub Desktop.

Select an option

Save IvanJosipovic/836c7499af8d3bb295c88b3d041d3da6 to your computer and use it in GitHub Desktop.
.Net Core global.json
// 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