Re: [Nant-users] How to accelerate nant builds?

2005-02-19 Thread Brad Wilson
28 projects isn't very many. What does your build file look like? In the past, I've done a build, and matched "**.csproj", which took much longer than specifying all the projects explicitly (very much like what you describe... a couple seconds vs. 15-20 seconds). - Brad On Fri, 18 Feb 2005 13:5

Re: [Nant-users] Primary Interop Assemblies

2005-02-09 Thread Brad Wilson
We keep PIAs in the source control tree, and reference them with relative paths. Builds and runs work fine in this manner. - Brad On Wed, 9 Feb 2005 13:11:38 -0600, Byrd, Payton <[EMAIL PROTECTED]> wrote: > Are there any locations other than x:\Program Files\Microsoft.Net\Primary > Interop Assemb

Re: [Nant-users] devenv and nant yield different build results

2005-02-07 Thread Brad Wilson
That's a tough question. What DEVENV does internally is a bit of a mystery, since Microsoft doesn't provide the source code for it. You can always call DEVENV from within NAnt. There's nothing binding you to using the task or some XSL-T transform, unless your goal is to remove Visual Studio from

Re: [Nant-users] Transactionality in NAnt

2005-01-24 Thread Brad Wilson
Sorry, but I disagree with general "transactionality". A build is not a deploy. If you choose to use NAnt for a deployment, then that's fine; you may want to approach some kind of transaction support for a deployment task that you might write for yourself. But for general build purposes, there's j

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

2005-01-18 Thread Brad Wilson
ual Studio, including all the libraries. Am I stuck installing Visual Studio (and burning a license) to do this? Or is there a downloadable version of the compiler? The projects are mixed managed/unmanaged C++ that are used to make "bridge" libraries for consumption inside C#. - Brad

Re: [Nant-users] Pulling out hair!

2005-01-13 Thread Brad Wilson
Any reason you're not just using the task instead of that old transform? On Thu, 13 Jan 2005 20:10:51 -0600, Chris Taylor <[EMAIL PROTECTED]> wrote: > I've got it all set up with a transform by Gordon Weakliem, which I've > tweaked to work with the latest verison of nant and a few other things >

Re: [Nant-users] Programatically find out the build status.

2005-01-11 Thread Brad Wilson
You ought to consider setting up a continuous integration server. Along with the ability to e-mail about status, it will give you a repository of historical build information, and the ability to launch a build via a web page. On Tue, 11 Jan 2005 10:53:41 +0200, Adrian Lazea <[EMAIL PROTECTED]> wro

Re: [Nant-users] Nant does not work wit some VS 2003 Solution Files

2004-12-31 Thread Brad Wilson
The only time I've ever seen this is because someone hand edited project files, which is really not something you should do. There are probably better uses of the developers' time than working out when someone couldn't hand edit a file correctly. :) - Brad On Fri, 31 Dec 2004 23:08:56 -0200 (BRST

Re: [Nant-users] Known bug in Nant?

2004-12-06 Thread Brad Wilson
It's too late, really. Even if they fix this for 2.0, the task will need to parse 1.0 and 1.1 project files far into the future, and thus the code will need to exist. It's, ironically, less work if they don't fix it, since it will prevent needing to have two codepaths (one for 1.x project files an

Re: [Nant-users] Known bug in Nant?

2004-12-05 Thread Brad Wilson
in an afternoon by a properly motivated individual. ;) - Brad -- Brad Wilson http://www.dotnetdevs.com/ http://dotnetguy.techieswithcats.com/ "Why do I think that people who live and breathe SQL are from a distant alien culture?" - Stuart Celarier on the WTOT mailing list ---

Re: [Nant-users] Re: Nant-users digest, Vol 1 #1240 - 15 msgs

2004-12-01 Thread Brad Wilson
You could, presumably, write a task that enumerates through the running processes, finds the process in question (if it's still alive), and waits for it to disappear. Let me ask the question this way: it would appear that this would be a general problem for your service. Does the Services control

Re: [Nant-users] Service Status

2004-11-30 Thread Brad Wilson
I don't really have any problems like this, so I have to wonder what kind of work is being done after your OnStop() is being called. A locked PDB will almost always be Visual Studio (I've never seen a single app leak more file handles that VS.NET) or the debugger. On Tue, 30 Nov 2004 15:12:34 -06

Re: [Nant-users] Service Status

2004-11-30 Thread Brad Wilson
Yeah, that'll work. I'm just so used to having to provide feedback and do instant cancels that I forget that it exists... :-p - Brad On Tue, 30 Nov 2004 21:58:18 +0100, Gert Driesen <[EMAIL PROTECTED]> wrote: > Brad, the ServiceController task actually uses : > > serviceController.WaitForStatus

Re: [Nant-users] Service Status

2004-11-30 Thread Brad Wilson
Are you waiting for the service to actually stop? When you call ServiceController.Stop(), it's really just issuing the stop command. You'll need to loop, calling .Refresh() and then checking .Status. -Brad On Tue, 30 Nov 2004 13:36:47 -0500, Hamza Zeen-Aldin <[EMAIL PROTECTED]> wrote: > I am usin

Re: [Nant-users] mkiisdir 0x80005006 error on Windows XP

2004-11-21 Thread Brad Wilson
Hard to say if this is it, but a default doc of "*.asmx" isn't valid. Default documents are specific filenames, not wildcards. On Fri, 19 Nov 2004 15:25:11 -0800, Steve Burkett <[EMAIL PROTECTED]> wrote: > defaultdoc="*.asmx"

Re: [Nant-users] How can Nant e-mail test owners if the test fails in NUnit2?

2004-11-16 Thread Brad Wilson
Individual code ownership is generally a bad practice. On Tue, 16 Nov 2004 12:13:21 +0200, Ioana Goga <[EMAIL PROTECTED]> wrote: > if a test fails and to send e-mail only to the owner of the test and only if > the test fails. -- Brad Wilson http://www.dotnetdevs.com/ http://dotnetguy.tech

Re: [Nant-users] [HELP][Eplorer.Exe Application Error][Memory reference][On running NANT Build Script]

2004-11-16 Thread Brad Wilson
build script. > > The instruction at "0x6361c7d9" memory reference could not be read. > The screen shot is attached. > > Please let me know wnat is the minimum machine configuration required to > run NANT script. > > Thanks > Sanjoy -- Brad Wilson http://www.dotne

Re: [Nant-users] Problem with resgen inside a task

2004-11-15 Thread Brad Wilson
his is a bad idea, and I'd say that the better idea is to re-write the code in terms of a specialized parser rather than just blindly using String.Replace(). :) - Brad -- Brad Wilson http://www.dotnetdevs.com/ http://dotnetguy.techieswithcat

Re: [Nant-users] Problem with resgen inside a task

2004-11-15 Thread Brad Wilson
No, that's okay. If it's not a known problem, I'll fix it today (I really need a fix today)... then presumably post a patch to the developers list, I guess. - Brad On Mon, 15 Nov 2004 21:38:29 +0100, Gert Driesen <[EMAIL PROTECTED]> wrote: > Hi Brad, > > Its definitely not a known issue. If you

[Nant-users] Problem with resgen inside a task

2004-11-15 Thread Brad Wilson
I'd try to upgrade just to see if the problem was a known, fixed bug). I figured I'd ask the list before I dove into the source for the resgen task to try and track the problem down. Thanks... -- Brad Wilson http://www.dotnetdevs.com/ http://dotnetguy.techieswithcats.com/

Re: [Nant-users] Build Log?

2002-08-16 Thread Brad Wilson
Brandon Lonac wrote: > Quick, simple, stupid question... Where does nant put its build log? And how > can I specify where it goes? It goes to stdout. Use ">" in the shell. :) Brad -- Read my web log at http://www.quality.nu/dotnetguy/ ---

[Nant-users] Whatever happened w/ 0.8?

2002-08-11 Thread Brad Wilson
Looking on the stable builds page, the last stable build is 0.7.9.0. I thought we had done a 0.8 at some point? Brad -- Read my web log at http://www.quality.nu/dotnetguy/ --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heave

Re: [Nant-users] Case-sensitive attribute names

2002-07-30 Thread Brad Wilson
[EMAIL PROTECTED] wrote: > Noticed that attribute names are case-sensitive. Just wondering why NAnt > went this route? It's generally in keeping with the case-sensitive nature of XML. Why did you expect otherwise? Brad -- Read my web log at http://www.quality.nu/dotnetguy/

Re: [Nant-users] Build Number Generation?

2002-06-21 Thread Brad Wilson
Mackay, Colin wrote: > Hi, > Has anyone got an example of how to set up a Nant build file that generates > and uses incremental build numbers. John Lam has been working on some NAnt build scripts lately, and that's one of them. Check out his web log at http://www.iunknown.com/ . Brad -- Read

[Nant-users] Strange problems with building

2002-06-13 Thread Brad Wilson
I'm doing a build via 0.7.9.0 (to make sure my Genghis[1] build file works properly with this new stable release), and two things now seem to be broken. The first is my "test" target. The nunit task seems to be failing. Here's the task: The DLL file exists. The