From 309ac968fb31dc8b1bd882b2a46b89b19b6bee33 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Sat, 18 Nov 2023 08:40:11 -0800 Subject: [PATCH 1/2] Update the README.md to link to .NET 8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9149de5e..c209141f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ See [LICENSE.md](LICENSE.md) in the repository root for more information. ### Building Managed -ClangSharp requires the [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0) and can be built simply with `dotnet build -c Release`. +ClangSharp requires the [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) and can be built simply with `dotnet build -c Release`. You can reproduce what the CI environment does by running `./scripts/cibuild.cmd` on Windows or `./scripts.cibuild.sh` on Unix. This will download the required .NET SDK locally and use that to build the repo; it will also run through all available actions in the appropriate order. From 87a9fe9a4c25457c47950d32add11f7f963ac4e0 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Sat, 18 Nov 2023 08:41:01 -0800 Subject: [PATCH 2/2] Update to the stable release of .NET 8 in the global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index d8833ada..61d88a71 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100-preview", + "version": "8.0.100", "allowPrerelease": true, "rollForward": "latestFeature" }