> 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
-
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
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
>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