From dba1f36aeb60087ee2e3b184e51015b80d383286 Mon Sep 17 00:00:00 2001 From: Elan Hasson <234704+ElanHasson@users.noreply.github.com> Date: Wed, 8 May 2024 20:30:10 -0400 Subject: [PATCH] Update .NET SDK version and rollForward policy in global.json (#63) * Bump global. Update .NET SDK version and rollForward policy in global.json Updated the `rollForward` policy in the `global.json` file from `feature` to `latestFeature` to use the latest available feature band SDK, including minor versions, for the specified major version. Also, the `version` of the SDK specified in the `global.json` file has been updated from `8.0.100` to `8.0.300-preview.24203.14`, meaning the project will now use the `8.0.300-preview.24203.14` version of the .NET SDK. --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index b93fcd8..cf4052a 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "rollForward": "feature", - "version": "8.0.100" + "rollForward": "latestFeature", + "version": "8.0.204" } } \ No newline at end of file