exec commands in MSBUILD *.proj files didn't handle spaces in directory names

This commit is contained in:
nhmall
2020-01-25 12:23:54 -05:00
parent 30fc4b9e05
commit f72df6c21f
8 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<Target Name="Build"
Inputs="$(ToolsDir)dgncomp.exe;$(DatDir)dungeon.pdf"
Outputs="$(DatDir)dungeon">
<Exec Command="$(ToolsDir)dgncomp.exe dungeon.pdf" WorkingDirectory="$(DatDir)"/>
<Exec Command="&quot;$(ToolsDir)dgncomp.exe&quot; dungeon.pdf" WorkingDirectory="$(DatDir)"/>
</Target>
<Target Name="Clean">
<Delete Files="$(DatDir)dungeon"/>