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
\${src.dir}' becomes '.\$' + src.dir   Cheers-   -EAB From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bleedledeepSent: Tuesday, March 15, 2005 3:06 PMTo: nant-users@lists.sourceforge.netSubject: [Nant-users] How To Use Variable in delete if construct I have the follow

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

2005-03-15 Thread Gert Driesen
@lists.sourceforge.netSubject: [Nant-users] How To Use Variable in delete if construct I have the following line in my build file         Using the variable ${src.dir} inside the exists() call does not work.  What is the syntax for using a variable inside the exists() function?   Do you

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

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

2005-03-15 Thread bleedledeep
I have the following line in my build file         Using the variable ${src.dir} inside the exists() call does not work.  What is the syntax for using a variable inside the exists() function?   Do you Yahoo!? Yahoo! Mail - Easier than ever with enhanced search. Learn more.