mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
Wrap xcopy arguments in quotes to handle spaces in paths
This commit is contained in:
parent
2f3d9e07cb
commit
2933d5ad5f
1 changed files with 2 additions and 2 deletions
|
@ -207,8 +207,8 @@
|
|||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>xcopy $(ProjectDir)Jint.dll $(TargetDir)Dependencies\ /y
|
||||
xcopy $(ProjectDir)Esprima.dll $(TargetDir)Dependencies\ /y</PostBuildEvent>
|
||||
<PostBuildEvent>xcopy "$(ProjectDir)Jint.dll" "$(TargetDir)Dependencies\" /y
|
||||
xcopy "$(ProjectDir)Esprima.dll" "$(TargetDir)Dependencies\" /y</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.
|
||||
|
|
Loading…
Reference in a new issue