Re: [Nant-users] delete element within target

2004-02-10 Thread Gert Driesen
Tasks will be executed in the order in which they are defined in your build file, so in this case the task will be executed first ... Gert - Original Message - From: "Mike Gage" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 10, 2004 11:21 PM Subject: [Nant-users] d

[Nant-users] delete element within target

2004-02-10 Thread Mike Gage
I am looking at a build file with a delete element within a target.   The structure is:         …           …         I assume that the delete instructions are carried out before the NDoc build?  Is this the way that delete always works within a target?   Thanks

RE: [Nant-users] Nant not working - Property 'nant.platform.name' has not been set!

2004-02-10 Thread Nitin Agarwal
I am using 0.84 version of Nant. The zip file for Nant is same for all the machines. I have .NET 1.1 Framework and SDK installed. The build works fine on a few machines. But on one machine I get this error when I try to use the build file for my application: Unknown task When I try to build Nan

Re: [Nant-users] resx files and form resources

2004-02-10 Thread Jaroslaw Kowalski
This works for me: *.resx resources are handled without problems here. Please check your paths and/

[Nant-users] resx files and form resources

2004-02-10 Thread Craig Williams
What is the recommended method for handling resources using NAnt ?   If I have a VS built form with a resx file, it gets ignored and the resources don't get compiled into the assembly.   or did I miss something ;)?   thanks   Craig

Re: [Nant-users] Nant not working - Property 'nant.platform.name' has not been set!

2004-02-10 Thread Gert Driesen
Could it be that you're using a different (old) version of NAnt on your build machine ? Gert - Original Message - From: "Nitin Agarwal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 09, 2004 8:48 PM Subject: [Nant-users] Nant not working - Property 'nant.platform.nam

[Nant-users] Nant not working - Property 'nant.platform.name' has not been set!

2004-02-10 Thread Nitin Agarwal
Title: Nant not working - Property 'nant.platform.name' has not been set! I have created a build file for compiling my application. The build file is using the task for building the project and its working fine on my machine. But when I try to build the solution on a build machine (separ

Re: [Nant-users] Nant not working - Property 'nant.platform.name' has not been set!

2004-02-10 Thread Jaroslaw Kowalski
Are you sure you're using a new version of NAnt to rebuild itself? To rebuild NAnt you should use the mini-nant that comes in the package. In general, when you're in nant base directory, run "bin\NAnt.exe" and nant will rebuild itself into "build\". Be sure that you have the appropriate .NET SDK

Re: [Nant-users] Building Custom NAnt Tasks

2004-02-10 Thread Jaroslaw Kowalski
First, your DLL has to be named "somenameTasks.dll" To use it, you have to either: 1. place the *.dll containing the task in nant/bin directory 2. place the *.dll somewhere else and add the path to nant.exe.config:/configuration/nant/@taskpath by default, it's set to ".\optional" which means th

[Nant-users] Unknown task and Property 'nant.platform.name' has not been set!

2004-02-10 Thread Nitin Agarwal
Title: Message I have created a build file for compiling my application. The build file is using the task for building the project and its working fine on my machine. But when I try to build the solution on a build machine (separate machine we use for building the solution and creatin

[Nant-users] Building Custom NAnt Tasks

2004-02-10 Thread larry chase
I have looked at the source code for NAnt and it seems simple enough to create your own tasks, however I am having trouble finding out how to get it working once I have created a task. How do I enable NAnt to understand the xml node elements etc.. of the tasks I just created? Is there anyone o