RE: [Nant-users] Linking .RES with Unmanaged C++

2005-01-19 Thread Gert Driesen
Brendan,   What version  of NAnt are you using ? I strongly recommend using the latest nightly build of NAnt, as lots of improvements wrt Visual C++ support were introduced after the release of NAnt 0.85 RC1.   If you still have problems with the nightly build, then please send me a small re

Re: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Bala
Hi all, You guys really helped me a lot in building my auto builder tool.. And i am now in my final stage of it... may be completeing in a week or so.. Kudos to NANT & its developers Thanks & Regards, Bala On Wed, 19 Jan 2005 20:47:41 +0100, Gert Driesen <[EMAIL PROTECTED]> wrote: > > > > -

Re: [Nant-users] Best practices for subprojects when using custom tasks.

2005-01-19 Thread Ian MacLean
Foster, Richard - PAL wrote: Hi there, Sorry in advance if this question is somewhat esoteric! We have a project made up of several components. Until now, we have created build files for each of the components, then called those build files (using the NANT task) from a central application build f

Re: [Nant-users] Capture Console output from exe task

2005-01-19 Thread Ian MacLean
Hamza Zeen-Aldin wrote: I am trying to call Perforce through the command line to create a change list number. How can I capture the output Perforce returns? I Also have a good perl script that handles calls to Perforce, would it be easier to have it return the number to Nant. I have tried the re

Re: [Nant-users] Import Tasks

2005-01-19 Thread Ian MacLean
Thirupputkuzhi, Sanjay wrote: Import Tasks , Perhaps this is available and I am just unable to find it in the documentation. Is there a way to import a library of tasks from a common location. For example, if I have defined certain tasks for creating build numbers for projects and I want to shar

[Nant-users] Linking .RES with Unmanaged C++

2005-01-19 Thread Rempel, Brendan
I’m at a loss.  I’d assume that if I compiled a that the items in it would get a C++ program compiled.  Certainly not the case.  I’ve figured out how to get the IDL compiled to create the *.c files and figured out the *.rc to *.res.   But actually getting the *.res linked into the EXE/DL

Re: [Nant-users] GPL and build scripts

2005-01-19 Thread Merrill Cornish
Craig, I'm pretty sure that "link" means _link_. If you go to the FSF site, in their explanation of the GPL (at least at one time), they gave the example of the GPL'ed Bash application being used to call proprietary programs (which is much like NAnt calling external programs). Since the Bash

[Nant-users] Best practices for subprojects when using custom tasks.

2005-01-19 Thread Foster, Richard - PAL
Title: Best practices for subprojects when using custom tasks. Hi there, Sorry in advance if this question is somewhat esoteric! We have a project made up of several components. Until now, we have created build files for each of the components, then called those build files (using the NAN

[Nant-users] NUnit 2.2.2?

2005-01-19 Thread Foster, Richard - PAL
Title: NUnit 2.2.2? Hi there, Is it possible to run tests build against NUnit 2.2.2.0 on Nant 0.85? I have tried a binding redirect, and either I did it wrong, or it didn't work, since I get output saying 0 tests were run. Suggestions gratefully received. Regards, Richard

[Nant-users] GPL and build scripts

2005-01-19 Thread Craig Andera
I'm not a lawyer, but my understanding of the GPL is that any component that links to a GPL program must also release under the GPL. The obvious example of this in Nant is tasks. However, I'm trying to figure out if the same applies to my build script. Although it's XML, it could still be considere

RE: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Bill Arnette > Sent: woensdag 19 januari 2005 20:42 > To: 'Gert Driesen'; nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] Overriding project properties path -VC++ > > > -Original

RE: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Bill Arnette
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Gert Driesen > Sent: Wednesday, January 19, 2005 10:37 AM > To: Arnette, Bill; 'Bala'; nant-users@lists.sourceforge.net > Subject: Re: [Nant-users] Overriding project properties path -VC++ > > > Bi

RE: [Nant-users] Passing Properties Back from

2005-01-19 Thread Butler, Mark A Mr IPI Gramm Tech
One way to make them global is to put them in the NUnit exe.config. (Which is in the install/bin folder with the exe) I think there are other ways but we'll let the experts cover that. This issue was covered not to long ago. Maybe you can find it in the archives. MArk B. -Original Message-

Re: [Nant-users] syntax to specify nunit 2.2 when using nant .84

2005-01-19 Thread John Hardin
On Wed, 2005-01-19 at 06:06, Makita Carlson wrote: >WorkingDirectory="C:\Program Files\NUnit 2.2\bin" /> --> Off the top of my head: Try doubling the backslashes in the "fixture" path argument. http://www.crsretail.com -

[Nant-users] Passing Properties Back from

2005-01-19 Thread Nau, Michael
Is there a way for a source build script to see changes to a property in a separate build script. For example in the following scripts I'd like to have the value of ${test.property} set to bar after the call to the test target in test2.build. Something similar to the task in ant-contrib (http://an

[Nant-users] Import Tasks

2005-01-19 Thread Thirupputkuzhi, Sanjay
Title: Import Tasks Hi all, Perhaps this is available and I am just unable to find it in the documentation. Is there a way to import a library of tasks from a common location. For example, if I have defined certain tasks for creating build numbers for projects and I want to share them across

[Nant-users] Capture Console output from exe task

2005-01-19 Thread Hamza Zeen-Aldin
I am trying to call Perforce through the command line to create a change list number. How can I capture the output Perforce returns? I Also have a good perl script that handles calls to Perforce, would it be easier to have it return the number to Nant. I have tried the resultproperty of the exe tas

RE: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Bill Arnette
Thanks. I just started with Nant a couple months ago so I am still learning its nuances. > -Original Message- > From: Gert Driesen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 19, 2005 10:37 AM > To: Arnette, Bill; 'Bala'; nant-users@lists.sourceforge.net > Subject: Re: [Nant-u

Re: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Gert Driesen
Bill, You should really consider using a global element to hold that set of directories. eg. Its definitely a more verbose construct, but also more flexible and easier to maintain ... at least if you ask me, but feel free to ignore my advice ;-) Gert - O

RE: [Nant-users] Overriding project properties path -VC++

2005-01-19 Thread Bill Arnette
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Bala > Sent: Wednesday, January 19, 2005 12:26 AM > To: Arnette, Bill; Gert Driesen; nant-users@lists.sourceforge.net > Subject: Re: [Nant-users] Overriding project properties path -VC++ > > > Hi B

RE: [Nant-users] Full C++ compiler & headers w/o installing Visual Studio?

2005-01-19 Thread Bill Arnette
The Visual C++ Toolkit 2003 contains the same compiler as VS.NET 2003: http://msdn.microsoft.com/visualc/vctoolkit2003/default.aspx It doesn't include MFC or ATL however. What does the Visual C++ Toolkit install on my machine? The Toolkit installs (1) the Visual C++ command-line compiler and lin

RE: [Nant-users] .NET SDK Requirements

2005-01-19 Thread Hart, Leo
Your "half-answer" certainly did help me. :) Thank you very much. -Original Message- From: Angus Grant [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 8:48 PM To: Ian MacLean Cc: nant-users@lists.sourceforge.net Subject: RE: [Nant-users] .NET SDK Requirements > -Origina

[Nant-users] syntax to specify nunit 2.2 when using nant .84

2005-01-19 Thread Makita Carlson
Hello, sorry if this is a stupid question, I've been wrestling with it a couple days, and perusing the archives. I am using NUnitAsp, and so am using the NUnit 2.2 framework. If I use nunit-console.exe, my tests run correctly in a console window. However, if I invoke the following either of