From df06c54e702978421765b88cb01d47f1f831009a Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Tue, 23 Nov 2021 11:01:59 -0600 Subject: [PATCH] Wrap these commands with quotes (#11807) I'm pretty exactly following the diff from #917. These paths weren't wrapped in `"`s, so building the solution in a directory with a space in it would explode. Closes #917. Turns out, the diff provided by that user wasn't exactly right. I've tested building in a directory with spaces now, and this seems to work. Also caught a bug in the Generate Feature Flags script. --- build/rules/GenerateFeatureFlags.proj | 8 +++++++- src/host/ft_uia/Host.Tests.UIA.csproj | 4 ++-- src/propsheet/propsheet.vcxproj | 4 +++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/build/rules/GenerateFeatureFlags.proj b/build/rules/GenerateFeatureFlags.proj index 93c50a993..7ffb31306 100644 --- a/build/rules/GenerateFeatureFlags.proj +++ b/build/rules/GenerateFeatureFlags.proj @@ -63,8 +63,14 @@ Outputs="$(OpenConsoleCommonOutDir)\inc\TilFeatureStaging.h" DependsOnTargets="_GenerateBranchAndBrandingCache"> + diff --git a/src/host/ft_uia/Host.Tests.UIA.csproj b/src/host/ft_uia/Host.Tests.UIA.csproj index 5db483cdd..72f78a30c 100644 --- a/src/host/ft_uia/Host.Tests.UIA.csproj +++ b/src/host/ft_uia/Host.Tests.UIA.csproj @@ -143,7 +143,7 @@ - copy $(SolutionDir)\dep\WinAppDriver\* $(OutDir)\ + copy "$(SolutionDir)\dep\WinAppDriver\*" "$(OutDir)\" @@ -152,4 +152,4 @@ - \ No newline at end of file + diff --git a/src/propsheet/propsheet.vcxproj b/src/propsheet/propsheet.vcxproj index 47a137dc7..01f16cf1b 100644 --- a/src/propsheet/propsheet.vcxproj +++ b/src/propsheet/propsheet.vcxproj @@ -78,8 +78,10 @@ $(IntermediateOutputPath);%(AdditionalIncludeDirectories) + - +