From c78b98e65694610827ad83e0b19dc0059843cf92 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Tue, 17 Jul 2018 16:29:32 -0700 Subject: [PATCH] Fix Sync targets to not actually cause a build to occur as well The TraversalBuildDependsOn gets other things added to it like BuildAllProjects which we don't want for the Sync target so factoring out the common pre-steps and sharing just those with sync and build. --- build.proj | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/build.proj b/build.proj index 3b71a9577403..95aec47afe06 100644 --- a/build.proj +++ b/build.proj @@ -29,9 +29,15 @@ - + GenerateConfigurationProperties; - CreateOrUpdateCurrentVersionFile; + CreateOrUpdateCurrentVersionFile + + + + + + $(PrebuildSetupTargets); $(TraversalBuildDependsOn); @@ -42,7 +48,7 @@ - +