Skip to content

Commit 89ae9a1

Browse files
authored
Add rollForward policy to global.json (#13)
Without a rollForwardPolicy the developer has to have the EXACT version specified in the global.json. If you are not in a devcontainer, I think this is not that easy and unnecessary. Therefore I used the rollForward attribute in 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.
1 parent c20689a commit 89ae9a1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Content/global.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"sdk": {
3-
"version": "3.1.101"
3+
"version": "3.1.101",
4+
"rollForward": "latestFeature"
45
}
56
}

global.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"sdk": {
3-
"version": "3.1.101"
3+
"version": "3.1.101",
4+
"rollForward": "latestFeature"
45
}
56
}

0 commit comments

Comments
 (0)