Re: [Nant-users] Call custom function

2004-08-11 Thread Gary Feldman
>From: "James Geurts" <[EMAIL PROTECTED]> >Sent: Tuesday, August 10, 2004 2:38 PM > Is there a way to explicitly call a function? There is yet another simple approach, which may be appropriate at times. Simply wrap the function in a target of its own, and call it using the task, e.g.

RE: [Nant-users] Call custom function

2004-08-11 Thread James Geurts
Thanks Troy, I wasn't aware that I could write a custom task using the script element. very cool, none the less... Jim > James Geurts wrote: >> Is there a way to explicitly call a function? >> >> For example, I created a function similar to the one below >> and I would like to call it occasiona

RE: [Nant-users] Call custom function

2004-08-10 Thread Troy Laurin
James Geurts wrote: > Is there a way to explicitly call a function? > > For example, I created a function similar to the one below > and I would like to call it occasionally in my build file: James, You can call a function as part of an expression, ${function-prefix::function-name(...)} > >