Skip to content

Commit

Permalink
remove extra quotes in data.vcxproj custom step
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoDA committed Feb 25, 2019
1 parent 4bce2cb commit 47330cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/data.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<CustomBuildStep>
<Message>Generating data</Message>
<Outputs>difficulty1_patched</Outputs>
<Inputs>"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe"</Inputs>
<Inputs>$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe</Inputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Expand All @@ -113,7 +113,7 @@
<CustomBuildStep>
<Message>Generating data</Message>
<Outputs>difficulty1_patched</Outputs>
<Inputs>"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe"</Inputs>
<Inputs>$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe</Inputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Expand All @@ -133,7 +133,7 @@
"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe" --Framework.CD="$(SolutionDir)\data\cd.iso" --Framework.Data="$(SolutionDir)\data"</Command>
<Message>Generating data</Message>
<Outputs>difficulty1_patched</Outputs>
<Inputs>"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe"</Inputs>
<Inputs>$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe</Inputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -153,7 +153,7 @@
"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe" --Framework.CD="$(SolutionDir)\data\cd.iso" --Framework.Data="$(SolutionDir)\data"</Command>
<Message>Generating data</Message>
<Outputs>difficulty1_patched</Outputs>
<Inputs>"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe"</Inputs>
<Inputs>$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe</Inputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemGroup>
Expand All @@ -177,4 +177,4 @@
<RemoveDir Directories="$(SolutionDir)\data\maps" ContinueOnError="true" />
<RemoveDir Directories="$(SolutionDir)\data\tilesets" ContinueOnError="true" />
</Target>
</Project>
</Project>

0 comments on commit 47330cc

Please sign in to comment.