Fix CopyToRoot target with spaces in path
parent
c9ef9420e7
commit
a01711e347
|
|
@ -195,7 +195,10 @@
|
||||||
<!-- The rule copies cryptest.exe to the project -->
|
<!-- The rule copies cryptest.exe to the project -->
|
||||||
<!-- root directory so it can be executed in place -->
|
<!-- root directory so it can be executed in place -->
|
||||||
<Target Name="CopyCryptestToRoot">
|
<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>
|
</Target>
|
||||||
<!-- Source Files -->
|
<!-- Source Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue