Skip to content

Commit

Permalink
Add rollForward policy to global.json
Browse files Browse the repository at this point in the history
Without a rollForwardPolicy the developer has to have the EXACT version specified in the global.json.
Especially if you are not in a devcontainer, I think this is not that easy and not necessary.

Therefore I added the rollForward attribute to global.json, which also allows to use newer versions of the SDK instead of only the exact version. latestFeature is just a guess what could work nicely and could be changed.
  • Loading branch information
NicoVIII authored Jun 11, 2020
1 parent 3081a2e commit a034018
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.1.201"
"version": "3.1.201",
"rollForward": "latestFeature"
}
}
}

0 comments on commit a034018

Please # to comment.