2025-10-03 01:38:26 +08:00
|
|
|
<Project>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
|
|
|
<Authors>lingdar77</Authors>
|
|
|
|
|
<Company>deadend.work</Company>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(MSBuildProjectName)' != 'Launcher'">
|
|
|
|
|
<OutputPath>..\Build</OutputPath>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'Source'">..\Build\.intermediate\Source</BaseIntermediateOutputPath>
|
2025-10-03 02:10:17 +08:00
|
|
|
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'Generator'">..\Build\.intermediate\Generator</BaseIntermediateOutputPath>
|
2025-10-03 01:38:26 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|