ant - How to call a target when another target fails in NAnt? -


i have 2 different tasks , b. if fails need call b. how possible nant.

i found way, (for 1 goes across same issue)

<trycatch>     <try>         <call target="a" />     </try>     <catch>         <call target="b" />     </catch> </trycatch> 

Comments

Popular posts from this blog

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -