Alterran / CS-PropLineTool

Cities: Skylines Mod:
http://steamcommunity.com/sharedfiles/filedetails/?id=694512541
MIT License
5 stars 3 forks source link

Post-build script: Copy dll to local mods folder #6

Open originalfoo opened 5 years ago

originalfoo commented 5 years ago

On successful build, copy the .dll to the local mods folder ready for testing in-game.

mkdir "%LOCALAPPDATA%\Colossal Order\Cities_Skylines\Addons\Mods\$(SolutionName)"
del "%LOCALAPPDATA%\Colossal Order\Cities_Skylines\Addons\Mods\$(SolutionName)\$(TargetFileName)"
xcopy /y "$(TargetPath)" "%LOCALAPPDATA%\Colossal Order\Cities_Skylines\Addons\Mods\$(SolutionName)"