Re: [nant-dev] proposal : change to if task behaviour

2003-03-06 Thread Scott Hernandez
run1output"/ ... !-- ifnot is an if with a !result returned -- ifnot propertyexits="output.dir" / or property name="setup.dir" value="setupfiles"/ ... if propertyexists="setup.dir" call target="make.setup"/ / ----- Original Message -

Re: [nant-dev] proposal : change to if task behaviour

2003-03-06 Thread Philip Nelson
propertyexists is false when the property does NOT exist OR the property is false sounds dangerous to me. Some operation x is supposed run or not, presumably based on a carefully considered condition. If I forget to set it, I may get unexpected results.

Re: [nant-dev] proposal : change to if task behaviour

2003-03-06 Thread Gert Driesen
: Re: [nant-dev] proposal : change to if task behaviour propertyexists is false when the property does NOT exist OR the property is false sounds dangerous to me. Some operation x is supposed run or not, presumably based on a carefully considered condition. If I forget to set it, I may get