Re: [Nant-users] Problem with conditional compilation

2004-08-03 Thread Gert Driesen
Steve, Are you using a recenty nightly build of NAnt ? If not, can you try with the latest nightly build ? Thanks, Gert - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 02, 2004 8:40 AM Subject: [Nant-users] Problem with conditional compilatio

Re: [Nant-users] trying to build nantcontrib

2004-08-03 Thread Gert Driesen
Steve, Again, are you sure you've downloaded the latest nightly build of NAntContrib ? The latest nightly does definitely not contain calls to Task.LogPrefix, so the code you're compiling is not the up-to-date. Gert - Original Message - From: "Steve Burkett" <[EMAIL PROTECTED]> To: <[EM

Re: [Nant-users] Re: Tasks in an Included file (John Ludlow)

2004-08-03 Thread Ian MacLean
John Ludlow wrote: Ok, here we go: BUILD FAILED Target 'st.co' does not exist in this project. Total time: 0.2 seconds. Now's when you tell me I've been a muppet and missed something obvious ;) hmm - interesting and a little subtle. The problem was that you used a different default xml name

RE: [Nant-users] Post-Build Events causing task to fail

2004-08-03 Thread Eric Deslauriers
John, "$(ProjectDir)\$(OutDir) ^ this "\" is likely your problem. $(ProjectDir) comes with a trailing "\" as needed. The compiler apparently sees that it's needed here and appends one, making yours the second one. At least, that's the C# behaviour. I always add @echo on @echo of

[Nant-users] problem with bash-specific environment variables

2004-08-03 Thread Helmut Dipper
Hello, I use a nightly build (July 04) of nant-0.8.5 in a cygwin-bash environment. This environment provides variables with the names '!::', '!?:' and '!D:'. Therefore the task sysinfo fails. When using "failonerror=false" with the task sysinfo some of the environment variables are missing. I foun

[Nant-users] Problem with conditional compilation

2004-08-03 Thread steve_hager
I'm having a problem using the task and conditional compilation. Our solution uses 2 keys one for development and one for production. The keys are defined in the assemblyInfo.vb file as follows... #If DEBUG Then #Else #End If The project configuration is ... The

[Nant-users] running external program from NAnt

2004-08-03 Thread sridhar
Hi, I would like to run an external program from NAnt. I want to run the Unit Tests in NAnt while that external program is running. How can I do that? Right now I'm trying like this

Re: [Nant-users] error BC3007: Reference required to assembly ( in

2004-08-03 Thread Madhan Retnaswamy
Hi Brian, I am using Nant - 0.85-20040619 NantContrib - 0.84 Do i need to update to a more recent nightly build? Thanks and appreciate your response!!! Madhan. On Tue, 03 Aug 2004 15:12:40 +0800, Brian Yeo <[EMAIL PROTECTED]> wrote: > > Madhan, > > Can you check the version of NAnt tha

[Nant-users] Re: Tasks in an Included file (John Ludlow)

2004-08-03 Thread John Ludlow
Ok, here we go: In Minorplanet.xml, we have http://tempuri.org/nant-donotuse.xsd";>

RE: [Nant-users] task and conditional compilation

2004-08-03 Thread Gifford, Noel
Steve, Are you sure that both the Release and Debug versions are being built from scratch? I created a solution similar to yours, built it with "Debug", and discovered that when I built it with "Release" it didn't actually build. The "Release" version says that the project is up-to-date. I disco

[Nant-users] NDepends

2004-08-03 Thread McCullough, Gary
Another promising N-tool. You guys may know about this already. I’d like to see the author put up on SourceForge.   http://smacchia.chez.tiscali.fr/NDepend.html   Gary McCullough   

Re: [Nant-users] Tasks in an Included file

2004-08-03 Thread Ian MacLean
John Ludlow wrote: which includes an st.co target in commonproperties.xml and it calls the st.co task with no issues: Yeah, I managed to get something similar working. However, (did I forget to mention this? Sorry if I did) where mine is failing is when I execute a task in the parent build

RE: [Nant-users] No exit code from exe

2004-08-03 Thread Dick, Brian E.
Suggestion noted. FYI, I was exposing the worse case. -Original Message- From: McCullough, Gary [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 10:32 AM To: [EMAIL PROTECTED] Subject: RE: [Nant-users] No exit code from exe Just a suggestion, but if you're running an exe hundred

Re: [Nant-users] Tasks in an Included file

2004-08-03 Thread John Ludlow
> which includes an st.co target in commonproperties.xml and it calls the st.co task > with no issues: Yeah, I managed to get something similar working. However, (did I forget to mention this? Sorry if I did) where mine is failing is when I execute a task in the parent build file: Thanks

RE: [Nant-users] No exit code from exe

2004-08-03 Thread McCullough, Gary
Just a suggestion, but if you're running an exe hundreds of times per build, I'd be looking for a way to run it once per build. Of course, that's just theoretical, since I don't know whether it's possible, whether it's an in-house app or COTS, whether you can configure it, etc. But (if it was me) I

RE: [Nant-users] No exit code from exe

2004-08-03 Thread Dick, Brian E.
Thanks Craig. That works for the most part, but I'm concerned about its robustness. The EXE will be run hundreds of times per build, in parallel, and its output can be large. Because of these characteristics, I would rather not have a file based solution. I modified your solution to overcome these

Re: [Nant-users] Tasks in an Included file

2004-08-03 Thread Ian MacLean
John Ludlow wrote: What error are you getting ? "Target 'st.co' does not exist in this project." At the top of the project element, I have this: and in the Starteam.xml file I have

Re: [Nant-users] Tasks in an Included file

2004-08-03 Thread John Ludlow
> What error are you getting ? "Target 'st.co' does not exist in this project." At the top of the project element, I have this: and in the Starteam.xml file I have

Re: [Nant-users] NAnt 0.85 release notes + to-do's

2004-08-03 Thread Gary Feldman
>From: "Gert Driesen" <[EMAIL PROTECTED]> >Sent: Monday, August 02, 2004 4:28 PM > The release notes for the NAnt 0.85 beta 1 are ready for review here : > http://nant.sourceforge.net/releasenotes.html (and in cvs ofcourse). With respect to the latest item: Automatic quoting of arguments (b

Re: [Nant-users] Tasks in an Included file

2004-08-03 Thread Ian MacLean
What error are you getting ? Ian John Ludlow wrote: Hi, I'm trying to refactor my build file to make a bit more sense. I've got a few common tasks defined in a .xml file which I include with the Include task. This all works fine except that the task I'm trying to execute doesn't get executed (s

[Nant-users] Tasks in an Included file

2004-08-03 Thread John Ludlow
Hi, I'm trying to refactor my build file to make a bit more sense. I've got a few common tasks defined in a .xml file which I include with the Include task. This all works fine except that the task I'm trying to execute doesn't get executed (says it can't find it). Does a task not get includ

[Nant-users] task and conditional compilation

2004-08-03 Thread steve_hager
I'm having a problem using the task and conditional compilation. Our solution uses 2 keys one for development and one for production. The keys are defined in the assemblyInfo.vb file as follows... #If DEBUG Then #Else #End If The project configuration is ... Th