From 6589a0e59ede7eaee446a4aa0439cc9b77ce403d Mon Sep 17 00:00:00 2001 From: IhateTrains Date: Fri, 13 Sep 2024 21:33:50 +0100 Subject: [PATCH] Use .NET 9 (#2178) #minor --- ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj | 2 +- ImperatorToCK3/ImperatorToCK3.csproj | 2 +- ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml | 2 +- ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml | 2 +- ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml | 2 +- global.json | 3 ++- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj b/ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj index 731896e73..d77a65ca8 100644 --- a/ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj +++ b/ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 false diff --git a/ImperatorToCK3/ImperatorToCK3.csproj b/ImperatorToCK3/ImperatorToCK3.csproj index 3030fda47..ef15a99b5 100644 --- a/ImperatorToCK3/ImperatorToCK3.csproj +++ b/ImperatorToCK3/ImperatorToCK3.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable win-x64;linux-x64;osx-arm64 thumbnail.ico diff --git a/ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml b/ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml index ef902862b..efa51f9aa 100644 --- a/ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml +++ b/ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml @@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Any CPU ../Publish/ImperatorToCK3/ FileSystem - net8.0 + net9.0 linux-x64 true true diff --git a/ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml b/ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml index efe3f5b22..a6e39ce9c 100644 --- a/ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml +++ b/ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml @@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Any CPU ..\Publish\ImperatorToCK3\ FileSystem - net8.0 + net9.0 osx-arm64 true true diff --git a/ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml b/ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml index 94b2bb6b3..2316253b3 100644 --- a/ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml +++ b/ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml @@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Any CPU ..\Publish\ImperatorToCK3\ FileSystem - net8.0 + net9.0 win-x64 true true diff --git a/global.json b/global.json index 83cb2109a..175fb2a71 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,7 @@ { "sdk": { - "version": "8.0.300", + "version": "9.0.100-rc.1.24452.12", + "allowPrerelease": true, "rollForward": "disable" } }