From 3b0b70260500a381544c922e5f214ede01c00944 Mon Sep 17 00:00:00 2001 From: Thorsten Sauter Date: Sun, 4 Feb 2024 13:23:59 +0100 Subject: [PATCH] fix(.NET SDK): disable upgrade behaviour (#622) # Changes - Removed the `rollForward` behaviour in order to avoid thousands of `AD0001` analyzer errors when using a preview SDK - Adjusted the copyright notice --- Directory.Build.props | 2 +- global.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index e0b04fa..4cb6760 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -5,7 +5,7 @@ enable NU1507;CS1591 Thorsten Sauter - (c) 2021-2023 + (c) 2021-2024 https://github.com/ThorstenSauter/NoPlan git true diff --git a/global.json b/global.json index 17c0c8e..d54915e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,5 @@ { "sdk": { - "version": "8.0.101", - "rollForward": "latestMinor" + "version": "8.0.101" } }