RE: [Nant-users] NUnit 2.2?

2004-09-23 Thread Burton, Kevin
Thank you very much. I used the second one since I wanted the error and output separate. It worked great. Kevin -Original Message- From: Castro, Edwin Gabriel (Firing Systems Engr.) [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 4:49 PM To: Burton, Kevin; Gert Driesen; [EMA

RE: [Nant-users] NUnit 2.2?

2004-09-23 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Try "nunit >nunit.out 2>&1" If that doesn't work try "nunit >nunit.out 2>nunit.err" You could always try "nunit >nunit.out 2>nunit.out" but I'm not sure what that would do... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burton, Kevin Sent: Thursday, S

RE: [Nant-users] NUnit 2.2?

2004-09-23 Thread Burton, Kevin
Thank you. I was not using the nightly build. Now I am and the tests run without exceptions. FYI, the docs still reference V2.1 for . This is probably a question best directed to the NUnit people. In V2.1 I would get the errors and standard output all in one stream. Now with V2.2 errors appear w

Re: [Nant-users] Comment syntax?

2004-09-23 Thread Merrill Cornish
XML disallows "--" inside an XML comment. Merrill --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Spons

Re: [Nant-users] NUnit 2.2?

2004-09-23 Thread Gert Driesen
- Original Message - From: "Burton, Kevin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 23, 2004 9:47 PM Subject: [Nant-users] NUnit 2.2? I remember seeing some discussion of NUnit 2.2 a while back. What was the conclusion? I am trying to use and get a whole bu

[Nant-users] NUnit 2.2?

2004-09-23 Thread Burton, Kevin
I remember seeing some discussion of NUnit 2.2 a while back. What was the conclusion? I am trying to use and get a whole bunch of exceptions. Is this just not supported yet? Kevin --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be o

[Nant-users] Comment syntax?

2004-09-23 Thread Burton, Kevin
It seems that a comment like: Is flagged as an "invalid comment syntax". Kevin --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your proj

RE: [Nant-users] can't overwrite property

2004-09-23 Thread Felice Vittoria
Actually, this is not a bug.   It's working as designed.  Here's the URL to the property help page: http://nant.sourceforge.net/nightly/help/tasks/property.html   What you need to do is set overwrite="false" and it should work.   Felice -Original Message-From: [EMAIL PROTECTED]

RE: [Nant-users] include global properties

2004-09-23 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Sure. I've attached the file. The reported error doesn't seem to indicate that the problem is in the .xslt file. Then again, this is my first time trying to pass parameters to

Re: [Nant-users] can't overwrite property

2004-09-23 Thread Gert Driesen
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 22, 2004 11:23 PM Subject: [Nant-users] can't overwrite property Hi there, why can't properties be overwritten? my code: or run: nant -D:path=c:\temp Nant says: readonly property path can

[Nant-users] can't overwrite property

2004-09-23 Thread peters
Hi there, why can't properties be overwritten? my code: or run:  nant -D:path=c:\temp Nant says: readonly property path can't be overwritten. is it a bug in 0.85.1724 (09-20 build)? thx

[Nant-users] include global properties

2004-09-23 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Hi, I'm trying to include a buildfile with global properties into another buildfile which would then use these properties. When I execute a target in the second buildfile NAnt complains the properties are not set... I've attached the buildfile, the include file, and the verbose output from NAnt.

Re: [Nant-users] running tasks/targets in parallel

2004-09-23 Thread Kevin Williams
The ExternalProgramBase task (which extends) already uses a System.Diagnostics.Process :) but has no option ("fork") to skip the "Join" calls to wait for the process to finish. It seems to me (quick scan of source code) that it wouldn't be difficult to add functionality to optionally start a P

RE: [Nant-users] running tasks/targets in parallel

2004-09-23 Thread McCullough, Gary
You can use the commandline "start" to start a secondary command process. Would that work for you? Gary McCullough -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Curtis Zarger Sent: Thursday, September 23, 2004 9:15 AM T

RE: [SPAM] - RE: [Nant-users] running tasks/targets in parallel - Email found in subject

2004-09-23 Thread Felice Vittoria
Thanks! -Original Message- From: Curtis Zarger [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 8:15 AM To: Felice Vittoria; Nant-Users (E-mail) Subject: [SPAM] - RE: [Nant-users] running tasks/targets in parallel - Email found in subject Ref: post from Troy Laurin 8/4/04 > H

RE: [Nant-users] running tasks/targets in parallel

2004-09-23 Thread Curtis Zarger
Ref: post from Troy Laurin 8/4/04 > Hi, > >I would like to run an external program from NAnt. > I want to run the Unit Tests in NAnt while that external > program is running. How can I do that? Right now I'm trying > like this The nant task currently doesn't support starting a process a