RE: [Nant-users] Logging failures or successes

2003-10-16 Thread N. V.
Hi Nicklas, Another thing you could do is take a look at the task in NAntContrib whuch allow you to log the build output in a file, and start/stop/close it at anytime in your build processs. After that you could zip the log files using the zip task and email them with the mail task. Nick Fr

Re: [Nant-users] Failures: Tests.NAnt.VisualCpp.Tasks.ClTaskTest_HelloWorld

2003-10-16 Thread William E Caputo
Ian: >Good idea. Is there a way to force [Ignore]d tests to run ? It would be >nice to have the regular build run the core tests and then a 'test-all' >target that forces any questionable ones to run. No there is not. Its been on my wishlist for a while now to have an option in NUnit to "ignore

Re: [Nant-users] Help with System.Collections...

2003-10-16 Thread Gert Driesen
- Original Message - From: "Scott Arbiv" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Sent: Thursday, October 16, 2003 8:00 PM Subject: RE: [Nant-users] Help with System.Collections... > Gert, > > I'm using version 0.8.3. I tried your recommendation, still same error.

Re: [Nant-users] Help with System.Collections...

2003-10-16 Thread Gert Driesen
Scott, What version of NAnt are you using ? Using the latest NAnt nightly builds (http://nant.sourceforge.net/nightly/builds) you should not have to specify the path to the system assemblies at all, so you should be able to use : ..

[Nant-users] Help with System.Collections...

2003-10-16 Thread Scott Arbiv
Title: Help with System.Collections... I am trying to compile a file "AddressTester.cs" under windows XP & .net 1.0.  This file uses System.Collections. I can't seem to compile it with nant.  I tried adding the includes for the M$ dll's and still nothing.  When trying to compile, it says

Re: [Nant-users] Creating a .build file by using the NAnt SDK

2003-10-16 Thread Scott Hernandez
The NAnt SDK is for creating extensions to NAnt, or using NAnt from another .Net program. To create a build file you will need to use the XML framework classes. We dynamically create build files in some of the tests if you are looking for an example. - Original Message - From: "Ecmel Erc

[Nant-users] Creating a .build file by using the NAnt SDK

2003-10-16 Thread Ecmel Ercan
Hi, I would like to know whether creating a build file in C# is possible by using the NAnt sdk classes. Or should one use the System.XML classes to build one? I checked the Project class but, most of the properties are read only and it seems it is not suitable. I would like to do the following:

RE: [Nant-users] Traping Failures

2003-10-16 Thread Nicklas Norling
Hi Greg. A skeleton framework for that might look something like this: Make sure the properties are set in the beginning of the build file. Good luck! /Nicke -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: den 15 oktober 2003 14:12 To: [EMAIL

RE: [Nant-users] Logging failures or successes

2003-10-16 Thread Nicklas Norling
Hi Scott. I think it would be great if this kind of problems could work "out of the box". And maybe Ben's suggestion is the way to go if a dependency towards #ziplib is not wanted. But to me, being a builder, it seems an awful lot of work. The semaphore methods with empty files and such where what

RE: [Nant-users] foreach recursive?

2003-10-16 Thread Nicklas Norling
Hi Scott. Thanks for putting me on track. This snipplet now works :) /Nicke -Original Message- From: Scott Hernandez [mailto:[EMAIL PROTECTED] Sent: den 15 oktober 2003 19:22 To: [EMAIL PROTECTED] Subject: Re: