Re: [Nant-users] mailLogger simple question

2004-07-20 Thread Jean-Michel Theriault
sh" <[EMAIL PROTECTED]>;<[EMAIL PROTECTED]>Sent: Friday, July 16, 2004 7:44 PMSubject: RE: [Nant-users] mailLogger simple question  Right on floks!! I got the email.Now I'm wondering if there is a way to save the whole content of the email,which is in fact my build.log file, w

Re: [Nant-users] mailLogger simple question

2004-07-16 Thread Gert Driesen
Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Friday, July 16, 2004 12:41 PM To: Jean-Michel Theriault; [EMAIL PROTECTED] Cc: Merrill Cornish Subject: RE: [Nant-users] mailLogger simple question Jean-Michel, -logger:NAnt.Core.MailLogger goes on the NAnt comm

RE: [Nant-users] mailLogger simple question

2004-07-16 Thread Jean-Michel Theriault
Sent: Friday, July 16, 2004 12:41 PM To: Jean-Michel Theriault; [EMAIL PROTECTED] Cc: Merrill Cornish Subject: RE: [Nant-users] mailLogger simple question Jean-Michel, -logger:NAnt.Core.MailLogger goes on the NAnt command line, not in the build script. Me

RE: [Nant-users] mailLogger simple question

2004-07-16 Thread Merrill Cornish
Jean-Michel, -logger:NAnt.Core.MailLogger goes on the NAnt command line, not in the build script. Merrill --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA Web

RE: [Nant-users] mailLogger simple question

2004-07-16 Thread Jean-Michel Theriault
http://www.cactuscommerce.com [EMAIL PROTECTED] -Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Friday, July 16, 2004 10:50 AM To: Jean-Michel Theriault; [EMAIL PROTECTED] Subject: Re: [Nant-users] mailLogger simple question Jean-Michel, You don't CALL Mai

RE: [Nant-users] mailLogger simple question

2004-07-16 Thread Jean-Michel Theriault
--Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Friday, July 16, 2004 10:50 AM To: Jean-Michel Theriault; [EMAIL PROTECTED] Subject: Re: [Nant-users] mailLogger simple question Jean-Michel, You don't CALL MailLogger so much as you ARM it.

Re: [Nant-users] mailLogger simple question

2004-07-16 Thread Merrill Cornish
Jean-Michel, You don't CALL MailLogger so much as you ARM it. You have to add -logger:NAnt.Core.MailLogger to your NAnt command line. That command line argument tells MailLogger to do its thing, and collect output as it is created. At the end of the script, pass or fail, the MailLogger is aut

Re: [Nant-users] mailLogger simple question

2004-07-16 Thread Gert Driesen
Jean-Michel, See http://nant.sourceforge.net/nightly/help/fundamentals/listeners.html. Gert - Original Message - From: "Jean-Michel Theriault" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 16, 2004 4:34 PM Subject: [Nant-users] mailLogger

[Nant-users] mailLogger simple question

2004-07-16 Thread Jean-Michel Theriault
I’m presently using the mail task to send my email at the end of my build. But since the mail task won’t send my build.log file at the end since it’s still writing to it, I heard that maybe the mailLogger might do this for me. I know I have to put this