From 038980002c5a5fad715eca490a39e56a128423fc Mon Sep 17 00:00:00 2001 From: issafram Date: Sun, 22 Mar 2015 23:11:46 -0400 Subject: [PATCH] Added double quotes in post build event to prevent errors in paths with spaces. --- RestSharp.Build/RestSharp.Build.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RestSharp.Build/RestSharp.Build.csproj b/RestSharp.Build/RestSharp.Build.csproj index 89c3aef7c..41d38ec59 100644 --- a/RestSharp.Build/RestSharp.Build.csproj +++ b/RestSharp.Build/RestSharp.Build.csproj @@ -50,7 +50,7 @@ - copy /Y $(TargetPath) $(SolutionDir).nuget\$(TargetFileName) + copy /Y "$(TargetPath)" "$(SolutionDir).nuget\$(TargetFileName)"