Skip to content

Commit 3843067

Browse files
committed
Merge branch 'master' into feat/ck3-1.18
2 parents 2429d78 + 84c375b commit 3843067

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

ImperatorToCK3.UnitTests/ImperatorToCK3.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

ImperatorToCK3.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChang
5858
[Code]
5959
function InitializeSetup: Boolean;
6060
begin
61-
// Install .NET 9 runtime if it is not already installed.
62-
Dependency_AddDotNet90;
61+
// Install .NET 10 runtime if it is not already installed.
62+
Dependency_AddDotNet100;
6363
6464
Result := True;
6565
end;

ImperatorToCK3/ImperatorToCK3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<RuntimeIdentifiers>win-x64;linux-x64;osx-arm64</RuntimeIdentifiers>
88
<ApplicationIcon>thumbnail.ico</ApplicationIcon>

ImperatorToCK3/Properties/PublishProfiles/linux-x64.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>Any CPU</Platform>
99
<PublishDir>../Publish/ImperatorToCK3/</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net9.0</TargetFramework>
11+
<TargetFramework>net10.0</TargetFramework>
1212
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>true</PublishSingleFile>

ImperatorToCK3/Properties/PublishProfiles/osx-arm64.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>Any CPU</Platform>
99
<PublishDir>..\Publish\ImperatorToCK3\</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net9.0</TargetFramework>
11+
<TargetFramework>net10.0</TargetFramework>
1212
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>true</PublishSingleFile>

ImperatorToCK3/Properties/PublishProfiles/win-x64.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Platform>Any CPU</Platform>
99
<PublishDir>..\Publish\ImperatorToCK3\</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net9.0</TargetFramework>
11+
<TargetFramework>net10.0</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>false</SelfContained>
1414
<PublishSingleFile>true</PublishSingleFile>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.200",
4-
"allowPrerelease": true,
3+
"version": "10.0.100",
4+
"allowPrerelease": false,
55
"rollForward": "minor"
66
}
77
}

0 commit comments

Comments
 (0)