visual studio 2013 - Setting post-build event commands? -


is possible set post-build in vs2013 , multi-device hybrid apps ctp3? want able copy output apk different location.

you can use msbuild post build event copy apk bin\android\debug custom location. can add postbuildevent project file execute copy command or can run task copy apk 1 location another.

  <itemdefinitiongroup>        <postbuildevent>    <command>copy source_apk_location target_apk_location</command>       <message>making copy of apk</message>     </postbuildevent>   </itemdefinitiongroup> 

to edit project file go solution explorer, under project node contextmenu click unload project --> edit *.jsproj , after making changes reload project. enter image description here enter image description here


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -