From f76f58b2af482bb284d4a97116fff602762c4fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Luthi?= Date: Sun, 11 Aug 2024 09:58:43 +0200 Subject: [PATCH] Change global.json roll-forward policy from latestPatch to latestMinor So that contributors can work on Testcontainers with the latest dotnet SDK. --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index d031a7632..39c53b83a 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { "version": "8.0.200", - "rollForward": "latestPatch" + "rollForward": "latestMinor" } }