diff options
author | Grant Limberg <grant.limberg@zerotier.com> | 2017-01-26 14:27:39 -0800 |
---|---|---|
committer | Grant Limberg <grant.limberg@zerotier.com> | 2017-01-26 14:27:39 -0800 |
commit | 9b8d9b70425d27f4702f5eff832b0c363332e622 (patch) | |
tree | 0d02fc5f7bc41abf602c44633fca2ae1d5962ea5 | |
parent | 902e03bccc105d96e34c938d2df5fc54f9ea66ff (diff) | |
download | infinitytier-9b8d9b70425d27f4702f5eff832b0c363332e622.tar.gz infinitytier-9b8d9b70425d27f4702f5eff832b0c363332e622.zip |
fix copy stage for paths with spaces
-rw-r--r-- | windows/WinUI/WinUI.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/WinUI/WinUI.csproj b/windows/WinUI/WinUI.csproj index 4fcf1bc4..6b8013e0 100644 --- a/windows/WinUI/WinUI.csproj +++ b/windows/WinUI/WinUI.csproj @@ -253,7 +253,7 @@ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildExtensionsPath)\Microsoft\Expression\Blend\.NETFramework\v4.5\Microsoft.Expression.Blend.WPF.targets" /> <PropertyGroup> - <PostBuildEvent>copy $(SolutionDir)\copyutil\bin\$(ConfigurationName)\copyutil.exe $(ProjectDir)\$(OutDir)\copyutil.exe</PostBuildEvent> + <PostBuildEvent>copy "$(SolutionDir)\copyutil\bin\$(ConfigurationName)\copyutil.exe" "$(ProjectDir)\$(OutDir)\copyutil.exe"</PostBuildEvent> </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. |