[Nant-users] xmlpoke request

2004-05-21 Thread Noel Gifford
All, I have an XML file that I want to use xmlpoke to expand to the following format <>

RE: [Nant-users] Target If property...

2004-05-21 Thread Noel Gifford
if RunTarget is 'true' then all three targets are executed if RunTarget is 'false' then First is executed because Third depends on it, but Second is not executed Below are the actual results of the following script:

[Nant-users] Target If property...

2004-05-21 Thread Bob Archer
Lets say I have three targets…       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.