From a03401882b5d784032e60b4bffd5a557e2e0f498 Mon Sep 17 00:00:00 2001 From: NicoVIII Date: Thu, 11 Jun 2020 11:46:59 +0200 Subject: [PATCH] Add rollForward policy to global.json 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. --- global.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index 70a59a3e..d00c7740 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,6 @@ { "sdk": { - "version": "3.1.201" + "version": "3.1.201", + "rollForward": "latestFeature" } -} \ No newline at end of file +}