Re: [Nant-users] How To Use Variable in delete if construct

2005-03-21 Thread Troy Laurin
> The point is that you can't nest ${...} properties but you CAN still > concatonate strings in expressions, so '.\${src.dir}' becomes '.\$' + > src.dir Actually, '.\${src.dir}' becomes '.\' + src.dir... the backslash here is a directory separator, not an escape character. -T -

RE: [Nant-users] How To Use Variable in delete if construct

2005-03-21 Thread Eric Bowen
Sorry for the belated response, but I just figured out an alternate syntax to do what you are trying to do, and thought other people might find it helpfull:         The point is that you can't nest ${...} properties but you CAN still concatonate strings in expressions, so '.\${src.dir}' becom

RE: [Nant-users] How To Use Variable in delete if construct

2005-03-15 Thread Gert Driesen
In functions, you do not need to enclose references to properties in braces. So use this instead :         Hope this helps,   Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bleedledeepSent: dinsdag 15 maart 2005 22:06To: nant-users@lists.sourceforge.netS

Re: [Nant-users] How To Use Variable in delete if construct

2005-03-15 Thread Gary Feldman
>From: "bleedledeep" <[EMAIL PROTECTED]> >Sent: Tuesday, March 15, 2005 4:05 PM > I have the following line in my build file > > > Never nest $ operations. The way to write this is: Everything inside the {...} gets interpreted in the context of the expression language, which means th