diff --git a/installer/PowerToysSetupVNext/Directory.Build.props b/installer/PowerToysSetupVNext/Directory.Build.props
new file mode 100644
index 0000000000..505e3cf844
--- /dev/null
+++ b/installer/PowerToysSetupVNext/Directory.Build.props
@@ -0,0 +1,11 @@
+
+
+
+
+ obj\Installer\
+ obj\Bootstrapper\
+
+
+ $(BaseIntermediateOutputPath)
+
+
diff --git a/installer/PowerToysSetupVNext/PowerToysBootstrapperVNext.wixproj b/installer/PowerToysSetupVNext/PowerToysBootstrapperVNext.wixproj
index 759956492e..a842ec9352 100644
--- a/installer/PowerToysSetupVNext/PowerToysBootstrapperVNext.wixproj
+++ b/installer/PowerToysSetupVNext/PowerToysBootstrapperVNext.wixproj
@@ -29,7 +29,8 @@
PowerToysUserSetupVNext-$(Version)-$(Platform)
$(Platform)\$(Configuration)\MachineSetup
$(Platform)\$(Configuration)\UserSetup
- obj\$(Platform)\$(Configuration)\
+ $(BaseIntermediateOutputPath)$(Platform)\$(Configuration)\MachineSetup
+ $(BaseIntermediateOutputPath)$(Platform)\$(Configuration)\UserSetup
diff --git a/installer/PowerToysSetupVNext/PowerToysInstallerVNext.wixproj b/installer/PowerToysSetupVNext/PowerToysInstallerVNext.wixproj
index b45e989173..4de354ad29 100644
--- a/installer/PowerToysSetupVNext/PowerToysInstallerVNext.wixproj
+++ b/installer/PowerToysSetupVNext/PowerToysInstallerVNext.wixproj
@@ -91,8 +91,8 @@ call powershell.exe -NonInteractive -executionpolicy Unrestricted -File $(MSBuil
$(Platform)\$(Configuration)\MachineSetup
$(Platform)\$(Configuration)\UserSetup
- obj\$(Platform)\$(Configuration)\MachineSetup
- obj\$(Platform)\$(Configuration)\UserSetup
+ $(BaseIntermediateOutputPath)$(Platform)\$(Configuration)\MachineSetup
+ $(BaseIntermediateOutputPath)$(Platform)\$(Configuration)\UserSetup
ICE40