[build] fix the bindir (#547)

Co-authored-by: Mike Griese <zadjii@gmail.com>
This commit is contained in:
Mike Griese
2025-03-13 16:50:40 -05:00
committed by GitHub
parent 28f129dc16
commit fd5606bcfa
2 changed files with 1 additions and 8 deletions

View File

@@ -4,11 +4,7 @@
<?include $(sys.CURRENTDIR)\Common.wxi?>
<?ifdef env.IsPipeline?>
<?define CmdPalBuildDir="$(var.BinDir)\WinUI3Apps\CmdPal\"?>
<?else?>
<?define CmdPalBuildDir="$(var.BinDir)\WinUI3Apps\CmdPalDev\"?>
<?endif?>
<Fragment>
<DirectoryRef Id="WinUI3AppsInstallFolder">

View File

@@ -7,10 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<OutputPath Condition="'$(CommandPaletteBranding)'=='Release'">$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal</OutputPath>
<OutputPath Condition="'$(CommandPaletteBranding)'=='Preview'">$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPalPreview</OutputPath>
<OutputPath Condition="'$(CommandPaletteBranding)'=='Canary'">$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPalCanary</OutputPath>
<OutputPath Condition="'$(CommandPaletteBranding)'=='' or '$(CommandPaletteBranding)'=='Dev'">$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPalDev</OutputPath>
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal</OutputPath>
</PropertyGroup>
</Project>