Re: [Nant-users] Nant NUnit and remoting problem

2002-10-30 Thread WECaputo
Henk: >Has somebody encountered this problem: ... >Exception: System.InvalidCastException Yes, I have seen this. I had the same exact problem a few days ago when serializing to disk and deserializing back again in the same code -- worked in a sample program, failed in a NUnit test. My test looke

[Nant-users] non-member posting

2002-10-30 Thread Ian MacLean
Due to the amount of spam email hitting this list I changed its settings to accept members posts only by default. As moderator I get notified of the non-member ones and can let them thru if they are legitimate. So if your message takes a while to hit the list thats why. If you're a member then

[Nant-users] csc '/unsafe' flag

2002-10-30 Thread Blanchard, Peter L.
I searched the archive, but could not find an answer on how to pass the "/unsafe" command line argument to the "csc" task Any help would be appreciated. Thanks, Pete -- Any opinions expressed herein are not the opinions of (nor sanctioned by) my employer -- Peter L. Blanchard

RE: [Nant-users] Environment

2002-10-30 Thread Smith, Eric V.
Look at the sysinfo task: http://nant.sourceforge.net/help/tasks/sysinfotask.html > -Original Message- > From: [EMAIL PROTECTED] > [mailto:nant-users-admin@;lists.sourceforge.net]On Behalf Of > Patrick Näf > Sent: woensdag, oktober 30, 2002 3:26 PM > To: [EMAIL PROTECTED] > Subject: [Nant

RE: [Nant-users] Style Task for including filesets

2002-10-30 Thread Scott Hernandez
You could use a for-each with an embedded style.

[Nant-users] Style Task for including filesets

2002-10-30 Thread SSriram
I am working on a project where I have to convert all xml files in a directory to html. But currently Nant's style task allows only one xml file as input. Is the multiple file capability in the works? I actually started putting in that functionality, but realized that I had trouble with the requir

RE: [Nant-users] Environment

2002-10-30 Thread Henk van Jaarsveld
What about embedding the external program call in a batch file and start the batch file with the setting of the environment variables? Regards, Henk -Original Message- From: [EMAIL PROTECTED] [mailto:nant-users-admin@;lists.sourceforge.net]On Behalf Of Patrick Näf Sent: woensdag, oktober

[Nant-users] Nant NUnit and remoting problem

2002-10-30 Thread Henk van Jaarsveld
Hi all,   Has somebody encountered this problem: Step 1: I have a NUnit test that does remoting. Running the test stand-allone (No NUnit, No nant) works fine.   Step 2: Then I used NUnit and I got: Exception: System.InvalidCastExceptionMessage:Return argument has an invalid type.Stack

[Nant-users] Environment

2002-10-30 Thread Patrick Näf
I'm looking for a way to set one or more environment variables when running an external program with the task. I didn't see any documentation for this, nor could I find any hint when I snooped around in the source files of the latest nightly build. Have I missed something? Patrick