24 lines
899 B
XML
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> |