[NAnt-users] /rcw option missing from axim command

2006-07-11 Thread Shaber, David (Adecco Tech - Boise)
Hello,   I am building a large solution using the solution task. We recently moved to from RC3 to RC4 and when the aximp command is called by RC4 the /rcw option is missing. This causes a runtime error. When using the solution task in RC3 this works correctly. I cannot release any of the

[Nant-users] NAnt VS Build Forge

2004-09-21 Thread Shaber, David
I was wondering if anyone has done any comparisons between BuildForge and NAnt. What features are better for each product? Thanks, David --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple

[Nant-users] Properties Descriptions

2004-08-26 Thread Shaber, David
Hello,   I am looking at converting my build files from .84 to .85 when the new version releases. I was experimenting with a recent version of the nightly code and noticed that properties can no longer have descriptions.   This worked on .84 and I was wondering if this can be added bac

RE: [Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 9:45 AM To: Shaber, David; [EMAIL PROTECTED] Subject: Re: [Nant-users] Copy misses 'CVS' Directories David, On my Windows XP machine, my CVS directories are marked as Hidden. I don't see an option on the task th

[Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
I during one of my builds, after pulling CVS, I attempted to copy everything to a different location. I noticed that any subfolders named ‘cvs’ was not being copied.   I tried this with the latest nightly build and a test set of directories and it appears that any subdirectory named ‘cvs

[Nant-users] changing the log level

2004-07-08 Thread Shaber, David
Hello,   I would am running a large build with the –quiet option from the command line. On Failure, I am using the nant.onfailure property to call a target and would like to run an external program and see the output on the screen. Is there a way to change the log level from Warning to

[Nant-users] RE: Nant-users digest, Vol 1 #862 - 4 msgs

2004-06-10 Thread Shaber, David
Misha, To access a property that has been set in your build file using c#, try And in c# string property = project.Properties[ "my.property" ]; This will set property to the value of my.property. Also look at the example included with nant called script-sample.build:

[Nant-users] Call task and Dependencies?

When using the call task all targets and dependencies are executed. For example, if I run execute target 3, I get the output below - notice that target 2 is executed twice. The first time is by the call task, the second time is as a dependency of target 1. I tried to get around this with the force