Skip to content

Commit fb09b06

Browse files
committed
update: net8 => net10
1 parent 3124d29 commit fb09b06

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

src/NF.Tool.UnityPackage.Console/NF.Tool.UnityPackage.Console.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>net10.0</TargetFramework>
66
<TrimUnusedDependencies>true</TrimUnusedDependencies>
77
<ImplicitUsings>disable</ImplicitUsings>
88
<Nullable>disable</Nullable>

src/NF.Tool.UnityPackage.Test/NF.Tool.UnityPackage.Test.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<Deterministic>true</Deterministic>
88
<IsPackable>false</IsPackable>
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
13-
<PackageReference Include="xunit" Version="2.4.1" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
13+
<PackageReference Include="xunit" Version="2.9.3" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="3.1.2">
18+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>

src/NF.Tool.UnityPackage/NF.Tool.UnityPackage.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>net10.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<Deterministic>true</Deterministic>

src/UnityPackageGUI/UnityPackageGUI.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
44
<!--<OutputType>Exe</OutputType>-->
5-
<TargetFramework>net9.0-windows</TargetFramework>
5+
<TargetFramework>net10.0-windows</TargetFramework>
66
<Nullable>enable</Nullable>
77
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
88
<ApplicationManifest>app.manifest</ApplicationManifest>
@@ -15,19 +15,19 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
18+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2121
</PackageReference>
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Avalonia" Version="11.3.6" />
26-
<PackageReference Include="Avalonia.Desktop" Version="11.3.6" />
27-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.6" />
28-
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.6" />
25+
<PackageReference Include="Avalonia" Version="11.3.8" />
26+
<PackageReference Include="Avalonia.Desktop" Version="11.3.8" />
27+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.8" />
28+
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.8" />
2929
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
30-
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.6">
30+
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.8">
3131
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
3232
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
3333
</PackageReference>

src/UnityPackageGUI_Winform/Properties/PublishProfiles/FolderProfile.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>x64</Platform>
99
<PublishDir>publish/win-x64</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net8.0-windows</TargetFramework>
11+
<TargetFramework>net10.0-windows</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>false</SelfContained>
1414
<PublishSingleFile>true</PublishSingleFile>

src/UnityPackageGUI_Winform/UnityPackageGUI_Winform.csproj

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

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net10.0-windows</TargetFramework>
66
<Nullable>disable</Nullable>
77
<UseWindowsForms>true</UseWindowsForms>
88
<ImplicitUsings>disable</ImplicitUsings>
@@ -12,15 +12,15 @@
1212
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1313
<EnableNETAnalyzers>true</EnableNETAnalyzers>
1414
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
15-
<NoWarn>CA2000;CA1303;CA1707</NoWarn>
15+
<NoWarn>CA1515;CA2000;CA1303;CA1707</NoWarn>
1616
</PropertyGroup>
1717

1818
<ItemGroup>
1919
<ProjectReference Include="..\NF.Tool.UnityPackage\NF.Tool.UnityPackage.csproj" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
23+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100">
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2626
</PackageReference>

0 commit comments

Comments
 (0)