From a142876a2671af6c5fa4323352bea8c2199f73aa Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Thu, 4 Sep 2025 07:50:40 +1000 Subject: [PATCH] add a global.json https://learn.microsoft.com/en-us/dotnet/core/tools/global-json --- SpecRec.sln | 5 +++++ global.json | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 global.json diff --git a/SpecRec.sln b/SpecRec.sln index 38e8de3..96a6492 100644 --- a/SpecRec.sln +++ b/SpecRec.sln @@ -7,6 +7,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpecRec", "SpecRec\SpecRec. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpecRec.Tests", "SpecRec.Tests\SpecRec.Tests.csproj", "{349CA12F-C471-497C-9B8D-C8C51EE4AD72}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{CEF68880-2810-40AC-B4AD-C5FE9C61F9D8}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/global.json b/global.json new file mode 100644 index 0000000..14a8aa1 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "9.0.304", + "allowPrerelease": true, + "rollForward": "latestFeature" + } +} \ No newline at end of file