Fix CopyToRoot target with spaces in path
parent
c9ef9420e7
commit
a01711e347
|
|
@ -195,7 +195,10 @@
|
|||
<!-- The rule copies cryptest.exe to the project -->
|
||||
<!-- root directory so it can be executed in place -->
|
||||
<Target Name="CopyCryptestToRoot">
|
||||
<Exec Command="copy $(Platform)\Output\$(Configuration)\cryptest.exe $(SolutionDir)" />
|
||||
<Exec Command="copy "$(Platform)\Output\$(Configuration)\cryptest.exe" "$(SolutionDir)"" />
|
||||
</Target>
|
||||
<Target Name="CopyToRoot">
|
||||
<Exec Command="copy "$(Platform)\Output\$(Configuration)\cryptest.exe" "$(SolutionDir)"" />
|
||||
</Target>
|
||||
<!-- Source Files -->
|
||||
<ItemGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue