From 1bca81d6237a385ef6ab105f9bba1ca5f1ba8bf3 Mon Sep 17 00:00:00 2001 From: tom-englert Date: Fri, 17 Aug 2018 17:02:27 +0200 Subject: [PATCH 1/6] Fix the post build step to work with names containing whitespace --- src/AutoLazy.Fody/AutoLazy.Fody.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AutoLazy.Fody/AutoLazy.Fody.csproj b/src/AutoLazy.Fody/AutoLazy.Fody.csproj index 88f2aa4..8d726e5 100644 --- a/src/AutoLazy.Fody/AutoLazy.Fody.csproj +++ b/src/AutoLazy.Fody/AutoLazy.Fody.csproj @@ -68,8 +68,8 @@ - copy $(TargetPath) $(SolutionDir)Tools -copy $(TargetDir)$(TargetName).pdb $(SolutionDir)Tools + copy "$(TargetPath)" "$(SolutionDir)Tools" +copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)Tools"