RE: [Nant-users] Problems since changing versions of NAnt... Suggested method of installing nant-contrib tasks

2004-06-17 Thread Troy Laurin
I've seen a few references to copying nant-contrib dlls into the NAnt bin folder, and I'm curious why this is the (unoficially?) suggested method for including nant-contrib tasks.   Surely a better method would be to unzip NantContrib.zip and put it somewhere close to, but not over-the-top-of

[Nant-users] FW: Let me just get something off my chest...

2004-06-17 Thread Rick Casey
From: Rick Casey [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 3:21 PM To: '[EMAIL PROTECTED]' Subject: Let me just get something off my chest... Wow. This is a great product. I've been building a .NET project for the past year and a half with batch files, multiple shared directories, a

[Nant-users] Errors with installed programs

2004-06-17 Thread Jean-Michel Theriault
Whenever I build I get these errors about installed programs that work fine and that I can call in the command prompt with no problem. Someone told me that it might be because I am running on Win XP pro. Could this be possible??   Here are the errors:   External Program Failed: c:\Progr

Re: [Nant-users] build multiple projects

2004-06-17 Thread Gary Feldman
>From: "Troy Laurin" <[EMAIL PROTECTED]> >Sent: Thursday, June 17, 2004 4:25 AM >> 1) How do I ensure that I build project A first since Project B is >refering to Project A >> (and so forth) > >I don't think there's any mechanism for describing dependencies between >_projects_... Nant is designed

[Nant-users] devenv error!!! HELP

2004-06-17 Thread Jean-Michel Theriault
While building I get this error…   BUILD FAILED     External Program Failed: devenv.exe (return code was 1)   But when I’m in the command prompt and type devenv, it lauches microsoft dev env….Here is the command in my code:             

RE: [Nant-users] Using our own test framework

2004-06-17 Thread Bill.Martin
Have a look here Curt.   http://nant.sourceforge.net/wiki/index.php/WritingATask   Cheers,   Bill     -Original Message- From: Curtis Zarger [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 15:37 To: [EMAIL PROTECTED] Subject: FW: [Nant-users] Using our own test framework  

Re: [Nant-users] NAnt, VC++.Net, standard/additional include directories, and quotes

2004-06-17 Thread Martin Gainty
Thibaut use command line to go to root directory root do a dir /AD /X and use the the shortened (8 character) folder name in your include e.g. 06/13/2004 05:26pPROGRA~1Program Files 03/22/2004 11:16aMICROS~3.NETMicrosoft Visual Studio .NET 2003 so.. X

RE: [Nant-users] Problems since changing versions of NAnt...

2004-06-17 Thread Bill.Martin
Sorry yes, my keyboard can’t keep up with my fingers (or at least that’s my excuse!)   Just to clarify (sorry if you already know this).  You need to unzip the NantContrib zip and then copy everything in the NantContrib\bin folder into the NAnt\bin folder.  NAnt should then automatically

FW: [Nant-users] Using our own test framework

2004-06-17 Thread Curtis Zarger
Doug,   I like your suggestion of the custom task.  I wasn't able to find documentation on the NAnt site.  Can you supply a reference to it?   THX   Curt Zarger   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 10:27 AM T

RE: [Nant-users] Problems since changing versions of NAnt...

2004-06-17 Thread Bill.Martin
Did you get the new version of NantContrib too and copy it into your bn folder?  Don’t forget that and are contrib. tasks not a core tasks.   HTH,   Bill     -Original Message- From: Jean-Michel Theriault [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 15:24 To: [EMAIL PROTECT

FW: [Nant-users] Using our own test framework

2004-06-17 Thread Curtis Zarger
I'm looking to add automated testing (functional and performance) to our development environment.  We're early in the investigation process, but I've be very interested in anyone's input/experience regarding products or how to get started with writing tests.   So far, we've briefly looke

RE: [Nant-users] Using our own test framework

2004-06-17 Thread Bill.Martin
Doug,   Rather than writing a separate exe and shelling it from NAnt (presumably you are intending to use the task?)  why not write it as a custom task, then you can call it directly from NAnt.  I have written a custom task to perform certain code checks when a project is compiled and t

[Nant-users] Problems since changing versions of NAnt...

2004-06-17 Thread Jean-Michel Theriault
Hi all!!   I recently changed my NAnt version from 0.8.3.23326 to 8.4 and once I start my build it gives me errors such as the task is invalid and  invalid element . Unknown task or datatype. My parameters are the same as with the old version, and I read the release notes and they don’

Re: [Nant-users] Using our own test framework

2004-06-17 Thread Martin Gainty
Good Morning Doug-IDEs are clumsy and not easy to automateWhat I was looking for (and anyone out there looking for auto testcase generator tools please speak up)was an completely automated test case generator similar to the one that Artur Hecfyz wrote for Junit..http://sourceforge.net/projec

[Nant-users] Problem with Task

2004-06-17 Thread Nadine Schlaudraff
NAnt 0.85 (Build 0.85.1606.0; net-1.0.win32; nightly; 25.05.2004) Copyright (C) 2001-2004 Gerry Shaw NAnt Team Buildfile: file:///C:/TestProjects/EasyDirect.build Target(s) specified: get [echo] Using nant -buildfile:EasyDirect.build -D:Date=actualDate clean: get: [exec] ping mbdevne

Re: [Nant-users] Visual Studio .Net caching assemblies

2004-06-17 Thread Ryan Cromwell
Regarding the Windows Installer stuff, take a look at the following blog.  We are using this technique to promote along our test/dev chain and it has been VERY successful. http://weblogs.asp.net/lorenh/archive/2004/05/09/128899.aspx?Pending=true The follow-up blog notes a somewhat annoying issue w

Re: [Nant-users] task - tlbimp.exe - Fatal error - CLR error: 8007000b The program will terminate

2004-06-17 Thread Martin Gainty
HRESULT COR_E_BADIMAGEFORMAT, which has the value 0x8007000B so if you Rebuild your DLLs and point your reference to them you should be good to go- Here is the relevant text. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystembadimageformatexceptionclasstopic.asp

Re: [Nant-users] Using our own test framework

2004-06-17 Thread Martin Gainty
Good Morning Doug:Since this is a NANT discussion list I'm assuming you are speaking of a NANT Script?I assume you are speaking of NUnit.Framework or do you have your own Framework? Kindly explain the framework you are using.Many Thanks,Martin-.NET Consultant-Boston MA USA 617-852-7822

Re: [Nant-users] Visual Studio .Net caching assemblies

2004-06-17 Thread Martin Gainty
Title: Visual Studio .Net caching assemblies Tom-Ah yes the DLL inferno we all experience-It seems you are using the default XCOPY behavior for deploying .NET assembliesUnfortunately .NET XCOPY Deployment will NOT handle these scenarios Automated deployment of COM components for .NET appli

RE: [Nant-users] Problem with vssget and a single file

2004-06-17 Thread Nicolas V.
Jeffrey, When retreiving a single file, your localpath must include a filename. Regards, Nick Original Message Follows From: "Ward, Jeffrey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: [Nant-users] Problem with vssget and a single file Date: Wed, 16 Jun 2004 13:23:03 -0400 Accordi

Re: [Nant-users] Mono Beta 2 Support

2004-06-17 Thread Gert Driesen
- Original Message - From: "MET" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]> Cc: "NAnt-Users" <[EMAIL PROTECTED]> Sent: Wednesday, June 16, 2004 4:00 PM Subject: Re: [Nant-users] Mono Beta 2 Support > > what do you get if you run pkg-config from the shell ? > > > > eg. > >

RE: [Nant-users] build multiple projects

2004-06-17 Thread Troy Laurin
Sriram, Comments inline. > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of [EMAIL PROTECTED] > Sent: Tuesday, 15 June 2004 2:22 PM > To: [EMAIL PROTECTED] > Subject: [Nant-users] build multiple projects > > > Hi, > I kinda digged through the archives, hence this mail > I have

RE: [Nant-users] Error during using the target

2004-06-17 Thread Troy Laurin
is a nant-contrib task. To enable nant-contrib tasks, you should place the following line somewhere in your buildfile - either at the base level (same level as elements) or inside a target... As long as it's executed before you try to use a task from the assembly... Or Of course, I don't kno

[Nant-users] Problem with vssget and a single file

2004-06-17 Thread Ward, Jeffrey
According to the documentation, I should be able to get a single file to a relative path… however this is not working at all.  It seams like this a problem with the sourcesafe.interop library, but I can’t tell.  Here’s the two directives that aren’t working:   Error: NAnt 0.85 (Build 0

[Nant-users] build multiple projects

2004-06-17 Thread sriram.rajamanuri
Title: Message Hi,   I kinda digged through the archives, hence this mail   I have multiple projects in my solution and one project depends on the other.   when i give multiple entries for     in the same build file, it gives me the following error:   "Error loading buildfile. There a

[Nant-users] Visual Studio .Net caching assemblies

2004-06-17 Thread Conti, Tom
Title: Visual Studio .Net caching assemblies Hello: We use nant for release builds for our .Net applications.  However, some of the assemblies exceed the 64k limit and VS.Net locks them.  So we have to exit out of VS.Net to run a nant build.  This is not a super critical issue, but it is a

[Nant-users] task - tlbimp.exe - Fatal error - CLR error: 8007000b The program will terminate

2004-06-17 Thread SHYAM VANKA
NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003) version. Calling the Nant build script from Visual Studio .Net Command Prompt (not a 2003 version). Using sloution task trying to build my .vbproj files. And I am getting the error message "CLR error: 8007000b The program will now te

[Nant-users] RE: Error during using the target

2004-06-17 Thread Dongre, Kedar A
Title: RE: Error during using the target A update on this problem - I copied the Ncontrib Task to the bin dir for Nant which allowed me to move a little bit forward, using the same file given below, I not get the following error:     Microsoft (R) .NET ActiveX Control to Windows Fo

[Nant-users] NAnt, VC++.Net, standard/additional include directories, and quotes

2004-06-17 Thread tbarrere
Hi, I'd like to know have been through this already, before posting anything to nant-devs. I'm using a vs.net 2003 solution, including a win32 project (vcproj) : 1/ it compiles fine under the IDE, but NAnt solution task (latest nightly build) reports that it can't find "assert.h" and other stand

[Nant-users] Using our own test framework

2004-06-17 Thread Doug Wallace
We use our own unit testing framework. Can Ant be scripted to run our own framework?   Doug Wallace President A G I L E http://www.agile.net [EMAIL PROTECTED] T:416.977.4675 ext.26F:416.599.1441   250 The Esplanade Suite 400 Toronto, ON M5A 1J2   Agile Solutions for the Agile Business  

[Nant-users] Error during using the target

2004-06-17 Thread Dongre, Kedar A
Title: Error during using the target My build file is really simple as below:                 However when running with nant gives the following error: Invalid element . Unknown Task or data type. Regards, Kedar