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
Post a Comment