Is this the regular approach?:

> <if test="true" unless="${property::exists(' buildtarget ')}">
>             //TODO:  Stuff
> </if>
>
> Kind of hoaky, but it works :)



Why not:

<if test="="${not property::exists(' buildtarget ')}">
    //TODO:  Stuff
</if>

or

<ifnot test="${ property::exists(' buildtarget ')}">
    //TODO:  Stuff
</ifnot>

?

Cheers,

Robert




-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Nant-users mailing list
Nant-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to