Re: [NAnt-users] Output console to text file

2009-10-22 Thread Bob Archer
You can use the XmlLogger. Check out the doc on Loggers and Listeners. BOb From: Justin Daubenmire [mailto:jus...@cboss.com] Sent: Thursday, October 22, 2009 8:22 AM To: nant-users@lists.sourceforge.net; nant-users@lists.sourceforge.net Subject: [NAnt-users] Output console to text file Hey all

Re: [NAnt-users] Output console to text file

2009-10-22 Thread Bob Archer
Nope, if the DLL is in the same folder as the nant.exe then it should load it. From: Justin Daubenmire [mailto:jus...@cboss.com] Sent: Thursday, October 22, 2009 9:03 AM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Output console to text file gotcha. Once the contrib assemblies

Re: [NAnt-users] Output console to text file

2009-10-22 Thread Justin Daubenmire
...@grantadesign.com] Sent: Thursday, October 22, 2009 8:59 AM To: Justin Daubenmire Subject: RE: [NAnt-users] Output console to text file You need to take the NAntContrib files and copy them into your NAnt installation, at which point you can then use both NAnt and NAntContrib tasks in your build scripts

Re: [NAnt-users] Output console to text file

2009-10-22 Thread Justin Daubenmire
-users@lists.sourceforge.net Subject: RE: [NAnt-users] Output console to text file Hi Justin, If your using the nant-contrib library you can use the record task (http://nantcontrib.sourceforge.net/release/latest/help/tasks/record.htm l) to save your output to a log file. It supports various

Re: [NAnt-users] Output console to text file

2009-10-22 Thread Michael Pento
@lists.sourceforge.net Subject: [NAnt-users] Output console to text file Hey all, In my .build file, how or what do I do to get all console messages redirected to a text file? I have this in place throughout my targets: which works, but the information displayed on the console, such as 28 files

[NAnt-users] Output console to text file

2009-10-22 Thread Justin Daubenmire
Hey all, In my .build file, how or what do I do to get all console messages redirected to a text file? I have this in place throughout my targets: which works, but the information displayed on the console, such as 28 files copied, is never wrote to the text file. How can I get verbose c