PreBuildEvent and PostBuildEvent on Visual Studio 2015 Tools for Apache Cordova -
does know if there way use prebuildevent , postbuildevent on new visual studio 2015 tools apache cordova?
i tried post, didn't work: setting post-build event commands?
i faced similar issue , needed delete folder on build in cordova app build vs 2015 . found solution in link https://stackoverflow.com/a/10605248/581157 hope helps.
to delete folder on biuld of cordova app added jsproj file
<target name="beforebuild"> <exec command="cd $(projectdir) rmdir /s /q platforms"/> </target>
Comments
Post a Comment