Monday, July 8, 2019

CallTarget and DependsOnTargets, How to chain up targets to run one after other

Below, Target A, B , C will be running one after other.





Or we can chain up B and C, instead of specifying all in A.























DependsOnTargets, will run the mentioned target before the main target , unlike CallTarget, which runs after it.







A target will be ran only once, eventhough it mentioned in CallTarget or Depends targts multiple times.


No comments:

Post a Comment