From 84b57e444988864986349fd408b64ed3fc9d9a0e Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 18:50:04 +0200 Subject: [PATCH 1/6] Bump to include .net8.0 --- Common.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Common.props b/Common.props index 305fa2619..e85e8f5d9 100644 --- a/Common.props +++ b/Common.props @@ -1,5 +1,5 @@ - net7.0;net6.0 + net8.0;net7.0;net6.0 \ No newline at end of file diff --git a/global.json b/global.json index a38087636..f242f751b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.100", + "version": "8.0.100", "rollForward": "latestMinor", "allowPrerelease": true } From 4c3f2e22f89438deba1444a692ba959fdbf10488 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 19:00:53 +0200 Subject: [PATCH 2/6] Bump to C# 12.0 --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 87e8d24e2..1c6cc1e3b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - 11.0 + 12.0 enable enable true From b57642bf58651e3fb463650d0a40dcccc78979d0 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 19:30:06 +0200 Subject: [PATCH 3/6] Try fixing based on issue comment https://github.com/actions/setup-dotnet/issues/223#issuecomment-1410893185 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index f242f751b..d6c191f65 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { "version": "8.0.100", - "rollForward": "latestMinor", + "rollForward": "latestFeature", "allowPrerelease": true } } \ No newline at end of file From 160850b01b68c287136658109acdc53872ad86fe Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 19:33:01 +0200 Subject: [PATCH 4/6] minor update --- .github/workflows/build-and-test.yml | 1 - global.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 982264c20..b97fdf46e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -38,7 +38,6 @@ jobs: run: | pwd dotnet --info - dotnet --version - name: Set up dependency caching for faster builds uses: actions/cache@v3 id: nuget-cache diff --git a/global.json b/global.json index d6c191f65..d4e0b8993 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "8.0.0", "rollForward": "latestFeature", "allowPrerelease": true } From eb4e27c6b2752beee1540863aa0fc30cfefc271f Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 19:44:14 +0200 Subject: [PATCH 5/6] Roll back a piece --- .github/workflows/build-and-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index b97fdf46e..982264c20 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -38,6 +38,7 @@ jobs: run: | pwd dotnet --info + dotnet --version - name: Set up dependency caching for faster builds uses: actions/cache@v3 id: nuget-cache From 8e249eacd7e64fc906096ba998cf73791a1e6457 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Sat, 12 Aug 2023 19:51:16 +0200 Subject: [PATCH 6/6] Use preview instead of 12.0 --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1c6cc1e3b..f6cf25c20 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - 12.0 + preview enable enable true