From 190b8d10bb71ecb89e0f449b8429c21606f5fe55 Mon Sep 17 00:00:00 2001 From: Tony Bark <35226681+tonytins@users.noreply.github.com> Date: Wed, 4 Feb 2026 00:05:25 -0500 Subject: [PATCH] RollForward support - Added Forward compatibility with newer SDKs. - Added root items into solution. --- CSTNet.Tests/CSTNet.Tests.csproj | 4 ++-- CSTNet.slnx | 2 ++ CSTNet/CSTNet.csproj | 2 +- Directory.Build.props | 8 ++++---- global.json | 6 ++++++ 5 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 global.json diff --git a/CSTNet.Tests/CSTNet.Tests.csproj b/CSTNet.Tests/CSTNet.Tests.csproj index 5e94c1a..f0ca681 100644 --- a/CSTNet.Tests/CSTNet.Tests.csproj +++ b/CSTNet.Tests/CSTNet.Tests.csproj @@ -1,7 +1,7 @@ - net10.0 + net8.0 enable enable false @@ -10,7 +10,6 @@ - runtime; build; native; contentfiles; analyzers; buildtransitive all @@ -20,6 +19,7 @@ all + diff --git a/CSTNet.slnx b/CSTNet.slnx index fe27ea6..4b4f125 100644 --- a/CSTNet.slnx +++ b/CSTNet.slnx @@ -1,7 +1,9 @@ + + diff --git a/CSTNet/CSTNet.csproj b/CSTNet/CSTNet.csproj index 9e9ef5e..2902431 100644 --- a/CSTNet/CSTNet.csproj +++ b/CSTNet/CSTNet.csproj @@ -1,7 +1,7 @@ - net8.0;net10.0 + net8.0 2.1.101-alpha enable latest diff --git a/Directory.Build.props b/Directory.Build.props index 54523f1..10b25cc 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - - - - + + + LatestMajor + \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..fae657f --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "8.0.100", + "rollForward": "latestMajor" + } +} \ No newline at end of file