Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Gary Feldman
Michael Frederick wrote: > I'd like to broaden his request a bit. One of the things I'm going to > need to do is to take segments of a NAnt-directed build and break the > output into separately viewable areas of the dashboard. The easiest way to do this is to use the XML output logger, and then u

Re: [NAnt-users] Calling other Nant build projects from withinacurrently running Nant build question?

2006-09-29 Thread Michael Frederick
Title: Message I do InstallShield with a batch file.  I the batch file:     Perform InstallShield packaging program="cmd.exe"   commandline="/c ISBuild.bat ${IS.ProjectPath} ${Build.FullVersion}"   failonerror="false"   resultproperty="IS.Result"  /> The batch file ISBuild.bat does 2 ma

Re: [NAnt-users] Calling other Nant build projects from withinacurrently running Nant build question?

2006-09-29 Thread Tim Mayert
Title: Message Mike how are you calling your InstallShield build portions?   Well my builds build the product source and then they will update and build our InstallShield projects as well.  I build the installs using the exec program task and on that line if you use the output= parameter the

Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Michael Frederick
Title: Message I'd like to broaden his request a bit.  One of the things I'm going to need to do is to take segments of a NAnt-directed build and break the output into separately viewable areas of the dashboard.   For example, my code monkeys only really care about seeing the output from MSB

Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Tim Mayert
Title: Message Okay that worked as well, but do you know if you can log that build call separately from the wrapper NAnt build that is calling the other NAnt builds?   Thanks,   Tim. -Original Message-From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: September 29, 2006 9:06

Re: [NAnt-users] Calling other Nant build projects from within a currently running Nant build question?

2006-09-29 Thread Gert Driesen
Title: Message Lose the –verbose+ argument.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Mayert Sent: vrijdag 29 september 2006 16:58 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Calling other Nant build projects from within a currently running

Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Foster, Richard - PAL
Title: Message Tim,   You may want to look at the task. :-) If appropriate, it may make your script a bit shorter   Those messages are because the new instance of NAnt is scanning for the various frameworks. I suspect that if you edit the nant.exe.config file and change the default framework

Re: [NAnt-users] Calling other Nant build projects from within acurrently running Nant build question?

2006-09-29 Thread Bob Archer
Title: Message Have you tried the NANT task?   BOb     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Mayert Sent: Friday, September 29, 2006 10:58 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Calling other Nant build projects from within ac

[NAnt-users] Calling other Nant build projects from within a currently running Nant build question?

2006-09-29 Thread Tim Mayert
Title: Message I would like to be able to launch another Nant build from another currently running Nant build and would like to know the best way to do this.   At the moment I just use the following command line to launch the other Nant builds:     Now they do get triggered and seem

Re: [NAnt-users] Problem with include/exclude...

2006-09-29 Thread Bob Archer
Yea, it's a little tricky to get this to work. I usually have to play with it for a while. Also, I found you had to add the full path to the exclude even if you include a basedir. Also, it seems to work better if you put the excludes first... try this:

[NAnt-users] Problem with include/exclude...

2006-09-29 Thread Jason Fleming
Hi all, I?m currently having a bit of trouble using include and exclude in delete task and was hoping someone might be able to help? I have the following: ?and I assumed this would delete the entire contents of ${Globals.SourcePath}\FolderA and all sub-fol