Lets say I have three targets…

 

 

<target name=”First” />

<target name=”Second” depends=”First” if=”${dothisthing}” />

<target name=”Third” depends=”Second” />

 

If dothisthing=false and Third is the default target will First then Third run… or will First not run cause Second didn’t run?

 

Basically as you can tell I want to skip one of my targets in a certain circumstance?

 

Thanks in advance.

 

Bob

 

Reply via email to