Skip to content

Commit 0b96250

Browse files
committed
refactor: To dotnet 9.0
--story=1
1 parent 7e83d96 commit 0b96250

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
1+
FROM mcr.microsoft.com/dotnet/runtime:9.0
22

33
LABEL maintainer="mritd <[email protected]>"
44

src/IME WL Converter Win/IME WL Converter Win.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0-windows7.0</TargetFramework>
3+
<TargetFramework>net9.0-windows7.0</TargetFramework>
44
<OutputType>WinExe</OutputType>
55
<RootNamespace>Studyzy.IMEWLConverter</RootNamespace>
66
<AssemblyName>深蓝词库转换</AssemblyName>

src/ImeWlConverterCmd/ImeWlConverterCmd.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>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<Version>1.0.0</Version>
77
<Trimming>full</Trimming>
88
</PropertyGroup>

src/ImeWlConverterCore/ImeWlConverterCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net8.0</TargetFrameworks>
5+
<TargetFrameworks>net9.0</TargetFrameworks>
66
<Version>2.8.0</Version>
77
<Platforms>AnyCPU;x86</Platforms>
88
</PropertyGroup>
99

10-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
10+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0|AnyCPU'">
1111
<DebugType>embedded</DebugType>
1212
<IsTrimmable>True</IsTrimmable>
1313
</PropertyGroup>
1414

15-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|x86'">
15+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0|x86'">
1616
<DebugType>embedded</DebugType>
1717
<IsTrimmable>True</IsTrimmable>
1818
</PropertyGroup>
1919

20-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
20+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|AnyCPU'">
2121
<DebugType>embedded</DebugType>
2222
<IsTrimmable>True</IsTrimmable>
2323
</PropertyGroup>
2424

25-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|x86'">
25+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|x86'">
2626
<DebugType>embedded</DebugType>
2727
<IsTrimmable>True</IsTrimmable>
2828
</PropertyGroup>

src/ImeWlConverterCoreTest/ImeWlConverterCoreTest.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

src/ImeWlConverterMac/ImeWlConverterMac.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
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
77
<ApplicationManifest>app.manifest</ApplicationManifest>

0 commit comments

Comments
 (0)