Re: [Nant-users] Optimizing nested NAnt builds

2004-07-30 Thread Gary Feldman
>- Original Message - >From: "Troy Laurin" <[EMAIL PROTECTED]> >Sent: Thursday, July 29, 2004 8:58 PM >You're correct, I just don't know how to make the dependencies based on >user-requested targets... unless the user is requesting targets exactly >as they appear in the child build file,

RE: [Nant-users] Optimizing nested NAnt builds

2004-07-29 Thread Troy Laurin
> Let me explain the problem in a bit more detail. > > [snip] > > So here's the question: Will the parent build invoke the > child once or twice? Ahh, I see the problem. > But, other than onsuccess/onfailure, there's no > way I can see to tell NAnt to do this after both the build > and test

Re: [Nant-users] Optimizing nested NAnt builds

2004-07-29 Thread Gary Feldman
>From: "Troy Laurin" <[EMAIL PROTECTED]> >Sent: Tuesday, July 27, 2004 9:49 PM ... >What do you mean though, that you don't know how to do this with NAnt's >current design? The 'target' attribute of the nant task allows >specifying multiple space-separated targets, which will be called in >order

RE: [Nant-users] Optimizing nested NAnt builds

2004-07-27 Thread Troy Laurin
> The first approach that comes to my mind is to somehow have > the upper level NAnt file assemble the target list, and then > when all the targets have been addressed, it actually makes a > single call to the lower level NAnt file. > But I can't think of any way to do that within NAnt's curren