mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
12 lines
753 B
XML
12 lines
753 B
XML
<Project>
|
|
<Import Project="..\..\src\Version.props" Condition="Exists('..\..\src\Version.props')" />
|
|
<PropertyGroup>
|
|
<!-- Set BaseIntermediateOutputPath for each project to avoid conflicts -->
|
|
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'PowerToysInstallerVNext'">obj\Installer\</BaseIntermediateOutputPath>
|
|
<BaseIntermediateOutputPath Condition="'$(MSBuildProjectName)' == 'PowerToysBootstrapperVNext'">obj\Bootstrapper\</BaseIntermediateOutputPath>
|
|
|
|
<!-- Set MSBuildProjectExtensionsPath to use the BaseIntermediateOutputPath -->
|
|
<MSBuildProjectExtensionsPath Condition="'$(BaseIntermediateOutputPath)' != ''">$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
|
|
</PropertyGroup>
|
|
</Project>
|