This commit is contained in:
2025-10-03 19:37:52 +08:00
parent 5e36931536
commit c0157a7e91
8 changed files with 69 additions and 17 deletions
+8 -4
View File
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<Authors>lingdar77</Authors>
@@ -8,13 +9,16 @@
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectName)' != 'Launcher'">
<OutputPath>..\Build</OutputPath>
<OutputPath>..\Build\$(MSBuildProjectName)</OutputPath>
<OutputPath Condition="'$(MSBuildProjectName)' == 'Generator'">..\Build\Source</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup>
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'Source'">..\Build\.intermediate\Source</BaseIntermediateOutputPath>
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'Generator'">..\Build\.intermediate\Generator</BaseIntermediateOutputPath>
<BaseIntermediateOutputPath>..\Build\.intermediate\$(MSBuildProjectName)</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>