From 8a2ba70cc3d4bce55e625a7ecad58ab1c312e9d5 Mon Sep 17 00:00:00 2001 From: goat Date: Tue, 14 Nov 2023 20:23:02 +0100 Subject: [PATCH] chore: upgrade projects to net8 --- Dalamud.Common/Dalamud.Common.csproj | 2 +- Dalamud.CorePlugin/Dalamud.CorePlugin.csproj | 2 +- Dalamud.Injector/Dalamud.Injector.csproj | 2 +- Dalamud.Test/Dalamud.Test.csproj | 2 +- Dalamud/Dalamud.csproj | 2 +- global.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dalamud.Common/Dalamud.Common.csproj b/Dalamud.Common/Dalamud.Common.csproj index ac5d3fdba..594e09021 100644 --- a/Dalamud.Common/Dalamud.Common.csproj +++ b/Dalamud.Common/Dalamud.Common.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable enable diff --git a/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj b/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj index 67ca26dee..1e87fcf9b 100644 --- a/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj +++ b/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj @@ -1,7 +1,7 @@ Dalamud.CorePlugin - net7.0-windows + net8.0-windows x64 10.0 true diff --git a/Dalamud.Injector/Dalamud.Injector.csproj b/Dalamud.Injector/Dalamud.Injector.csproj index d8a74e58d..1ff29ea66 100644 --- a/Dalamud.Injector/Dalamud.Injector.csproj +++ b/Dalamud.Injector/Dalamud.Injector.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 win-x64 x64 x64;AnyCPU diff --git a/Dalamud.Test/Dalamud.Test.csproj b/Dalamud.Test/Dalamud.Test.csproj index 8f4ccf0dd..8dcdf0889 100644 --- a/Dalamud.Test/Dalamud.Test.csproj +++ b/Dalamud.Test/Dalamud.Test.csproj @@ -1,7 +1,7 @@ - net7.0-windows + net8.0-windows win-x64 x64 x64;AnyCPU diff --git a/Dalamud/Dalamud.csproj b/Dalamud/Dalamud.csproj index 5c971489a..095a29f4d 100644 --- a/Dalamud/Dalamud.csproj +++ b/Dalamud/Dalamud.csproj @@ -1,7 +1,7 @@ - net7.0-windows + net8.0-windows x64 x64;AnyCPU 11.0 diff --git a/global.json b/global.json index 3d9090158..c65c9eac9 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.0", + "version": "8.0.0", "rollForward": "latestMinor", "allowPrerelease": true }