Remove build dependency for g2 target

The reason for removing this is so that running the g2 target does not cause a build when it isn't necessary such as if the build is out of date or there is a platform or configuration mismatch.
This commit is contained in:
Ted John 2018-09-08 21:32:05 +01:00
parent 5ff7a0a4f8
commit 56444e6870
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@
</Target>
<!-- Target to build g2.dat containing OpenRCT2 sprites -->
<Target Name="g2" DependsOnTargets="Build" AfterTargets="Build" Inputs="@(g2Inputs)" Outputs="$(g2Output)"
<Target Name="g2" AfterTargets="Build" Inputs="@(g2Inputs)" Outputs="$(g2Output)"
Condition="'$(TestConfig)'!='true'">
<Message Text="Building g2.dat..." Importance="high" />
<Exec Command="&quot;$(OutputExe)&quot; sprite build &quot;$(g2Output)&quot; &quot;$(RootDir)resources\g2\sprites.json&quot;"