Re: [Nant-users] if property = value
Jonni, If you're using a recent nightly build the following will do what you are after: or note that the braces go around the whole expression not just the property part. if you really want to compare your property as a number rather than a string then the following may be more appropriate:
[Nant-users] if property = value
Hi, How do you check if a property is a certain value? The if... propertytrue & propertyexists doesnt seem to cater for this. I would like something like: if (${abc}=123)... eg or Jonni