Re: [NAnt-users] If - else statement ...

2009-04-28 Thread Bob Archer
I try to avoid the IF task. Unless I have a very small block of things to put into it. I tend to use the IF and UNLESS attributes a lot more... and break up what you want to happen on TRUE vs FALSE in separate targets. Then you can CALL target="dothis" if="${thisistrue}" BOb

[NAnt-users] If - else statement ...

2009-04-28 Thread Parrish, Ken
A while back I inquired about an 'else' or 'elseif' clause in an task. Presently, I use the task instead-e.g.: Just wonder if anyone has yet created a custom task with a more concise syntax (e.g. not doubly nested)? Optio