Compare commits

...

1 Commits

Author SHA1 Message Date
bafbaedc52 chore(build): 更新项目目标框架至 .NET 10.0
- 将 JackCraft.Config 项目的目标框架从 net9.0 更新为 net10.0
- 将 Test 项目的目标框架从 net9.0 更新为 net10.0
- 格式化解决方案文件中的 XML 结构以提高可读性
2026-01-18 21:52:32 +08:00
3 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
<Solution> <Solution>
<Folder Name="/Solution Folder/"> <Folder Name="/Solution Folder/">
<File Path="LICENSE" /> <File Path="LICENSE"/>
<File Path="Readme.MD" /> <File Path="Readme.MD"/>
</Folder> </Folder>
<Project Path="JackCraft.Config/JackCraft.Config.csproj" /> <Project Path="JackCraft.Config/JackCraft.Config.csproj"/>
<Project Path="Test/Test.csproj" /> <Project Path="Test/Test.csproj"/>
</Solution> </Solution>

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net10.0</TargetFramework>
<LangVersion>latestmajor</LangVersion> <LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>

View File

@@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net10.0</TargetFramework>
<LangVersion>latestmajor</LangVersion> <LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>