Support both VS 2017 and VS 2019 without making changes to project files.

Renamed 'vs2017' folder to 'vs'.
This commit is contained in:
Bart House
2020-10-10 15:15:59 -07:00
parent 75f3ccd770
commit bb04a9b041
98 changed files with 15 additions and 24 deletions
+12
View File
@@ -0,0 +1,12 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="dirs.props"/>
<Import Project="files.props"/>
<Target Name="Build"
Inputs="$(ToolsDir)tilemap.exe"
Outputs="$(SrcDir)tile.c">
<Exec Command="&quot;$(ToolsDir)tilemap.exe&quot;" WorkingDirectory="$(SrcDir)"/>
</Target>
<Target Name="Clean">
<Delete Files="$(SrcDir)tile.c"/>
</Target>
</Project>