Re: [NAnt-users] Nant.onfailure

2007-01-09 Thread Foley, Cash
You might look at NAntContrib TryCatch Task http://nantcontrib.sourceforge.net/release/0.85/help/tasks/trycatch.html I find this much more robust than a global property that can only have one value. What if you are deep in a sub-build and need specialized error handling? Before you had t

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Foley, Cash
It seems a little odd that you are attempting to set the Draco property.  I’m assuming your build file was launched by Draco with a ‘true’ value and you are trying to change that to ‘false’?!   If this is true, I would recommend creating a new property and initialize it with the Draco pro

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Foley, Cash
How can the “overwrite” occur on the command line?     Cash - [EMAIL PROTECTED] perotsystems 972-577-5842 - office   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Felice Vittoria Sent: Friday, August 20, 2004 3:34 PM To: Mark Overton; [EMAIL PROTECTED] S

RE: [Nant-users] MSBuilds bashing the foundation of Nant?

2003-12-05 Thread Foley, Cash
The following link to a PDC presentation may help. It's more than an hour, if watched in its entirety, but many of you may find it worth while. NOTE: It uses a PowerPoint Plug-in and takes about 5 minutes to start... if you are interested be patient while it 'appears' to reload over and over. A

RE: [Nant-users] Re: vb web service

2003-12-02 Thread Foley, Cash
I hate hard coding the path! The environment variable 'VS71COMNTOOLS' contains the path to visual studio 2003. I created a BAT file because I could not get the EXEC task to resolve the %VS71COMNTOOLS% usage. - Begin vs_Build.bat call "%VS71COMNTOOLS%vsvars32.bat" DevE

[Nant-users] Trouble building NAntAddin

2003-10-30 Thread Foley, Cash
I've had a lot of trouble getting NAntAddin to build. Is this a working project? First, it made an undocumented assumption you have downloaded and built a Microsoft example. I think I found the right thing at: http://download.microsoft.com/download/VisualStudioNET/Samples/7.0/NT5XP/EN- US/Tool

RE: [Nant-users] Re: Obsolescing NAntContrib

2003-09-10 Thread Foley, Cash
Ian, thanks for your active participation and sympathize with your frustration over the "unspecific complaints" of trouble building NAntContrib. I was one of those who had done this. However, I was able to successfully build it last night and here are my notes and observations about the process.

RE: [Nant-users] cvs down?

2003-09-10 Thread Foley, Cash
I too was having trouble connecting to CVS. I think it was a Firewall issue. Yesterday, I could not connect at work. Last night all went well from home. Today I can't connect again. (using the same laptop) < cvs [login aborted]: connect to cvs.sourceforge.net(66.35.250.207):2401 failed: Conne

RE: [nant-dev] Re: [Nant-users] 0.8.3 final

2003-09-09 Thread Foley, Cash
erotsystems 972-577-5842 - office -Original Message- From: Erv Walter [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 12:16 PM To: Foley, Cash; [EMAIL PROTECTED] Subject: RE: [nant-dev] Re: [Nant-users] 0.8.3 final All of the NantContrib tasks are included as binaries in th

RE: [nant-dev] Re: [Nant-users] 0.8.3 final

2003-09-09 Thread Foley, Cash
b should be brought into NAnt where it can be properly packaged or the NAntcontrib needs to be made more assesible. Thanks, Cash [EMAIL PROTECTED] perotsystems 972-577-5842 - office -Original Message- From: Ian MacLean [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 10:04 PM To: F

RE: [Nant-users] nant / nant-contrib issues

2003-08-28 Thread Foley, Cash
Not wanting to turn this into a NAnt RAnt :) But I have never been able to download NAntContrib and just build it! Somehow I find it a little bit ironic that a tool to manage builds should be so difficult to build. I have the feeling that once they get their environment set up, the people puttin

RE: [Nant-users] nant Task with inheritall

2003-08-28 Thread Foley, Cash
example is clear enough, but just in case... The problem is that the last echo produces: [echo] 3) basename = 'basename_Mod' When I want: [echo] 3) basename = 'basename_SubMod' Thanks again, Cash -----Original Message- From: Foley, Cash [mailto:[EMAIL PROTE

[Nant-users] nant Task with inheritall

2003-08-27 Thread Foley, Cash
I cannot reproduce the following expected behavior: In a Base NAnt build file set a property value (in my example 'basename') then invoke an NAnt task, using the 'inheritall' attribute set to 'true', modify the property and have the modification in my Base NAnt process. In my example it changes t