From d484e832f5e712923fcf1c2a732baa647970be75 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Luthi?= <cedric.luthi@gmail.com>
Date: Wed, 7 Jun 2023 11:26:02 +0200
Subject: [PATCH] Relax the SDK requirements by rolling forward to the latest
 feature

This was initially introduced in 3c5b98123b4c9cd50a37da25ca9a3fd34ac7f479 by Daniel Cazzulino, then reverted in 82de4a55c48e269225ff2b137850a303b3776879 by Patrick Svensson because of a bug in the .NET 6.0.401 SDK.
---
 global.json | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/global.json b/global.json
index 70e3dcc..e3cf6ef 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,7 @@
-{
-  "sdk": {
-    "version": "7.0.100"
-  }
-}
+{
+  "$schema": "http://json.schemastore.org/global",
+  "sdk": {
+    "version": "7.0.100",
+    "rollForward": "latestFeature"
+  }
+}