From c8cf9af3c7aeb32b5146d7ed2f017b630431d56c Mon Sep 17 00:00:00 2001 From: "Dustin L. Howett" Date: Thu, 11 Jul 2024 13:41:41 -0700 Subject: [PATCH] [ci]Disable project references so CustomActions doesn't rebuild during MSI build (#33789) --- .pipelines/installer-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/installer-steps.yml b/.pipelines/installer-steps.yml index e3f2fa76f7a..3fe30dfc62e 100644 --- a/.pipelines/installer-steps.yml +++ b/.pipelines/installer-steps.yml @@ -43,7 +43,7 @@ steps: inputs: solution: "**/installer/PowerToysSetup.sln" vsVersion: 17.0 - msbuildArgs: /p:CIBuild=true /target:PowerToysInstaller /bl:$(Build.SourcesDirectory)\msbuild.binlog /p:RunBuildEvents=false /p:PerUser=${{parameters.perUserArg}} + msbuildArgs: /p:CIBuild=true /p:BuildProjectReferences=false /target:PowerToysInstaller /bl:$(Build.SourcesDirectory)\msbuild.binlog /p:RunBuildEvents=false /p:PerUser=${{parameters.perUserArg}} platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: false # don't undo our hard work above by deleting the CustomActions dll