Files
codegen/Directory.Build.props
T
2025-10-03 19:37:52 +08:00

24 lines
899 B
XML

<Project>
<PropertyGroup>
<TargetFramework>net9.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\$(MSBuildProjectName)</OutputPath>
<OutputPath Condition="'$(MSBuildProjectName)' == 'Generator'">..\Build\Source</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup>
<BaseIntermediateOutputPath>..\Build\.intermediate\$(MSBuildProjectName)</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>