Re: [Nant-users] Debugging

2004-04-29 Thread Ian MacLean
We might also want to update the sln file as well. Since we are takng the line that 'nant can't be built in vs.net' then it wouldn't hurt to disable building for the project files. Ian Gert Driesen wrote: didn't think of that yet, feel free to update the faq ;) - Original Message - Fro

Re: [Nant-users] solution task too verbose

2004-04-29 Thread Ian MacLean
These are produced by the resource compiler ( resgen.exe ) when nant calls it. There is no way to configure its output as its a seperate exe. Ian Andrew Sharpe wrote: I'm being picky here, so beware :) I am using the solution task with success, however I find the resource messages that it displa

[Nant-users] (no subject)

2004-04-29 Thread Yeo, Brian
*** screen output starts Checkout: [echo] Checkout from TestVSS [echo] localpath C:\TestBuild [echo] dbpath C:\TestVSS\srcsafe.ini [echo] path $/TestDev/TestBuild BUILD FAILED c:\Nant\test.build(57,5): Failed to open database COM object with CLSID

RE: [Nant-users] Problem following upgrade from Win2000 to XP

2004-04-29 Thread Noel Gifford
You can also use these instructions to change the default framework http://nant.sourceforge.net/faq.html#change-targetframework -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Etheridge Sent: Thursday, April 29, 2004 4:19 AM To: 'Gert Dri

[Nant-users] solution task too verbose

2004-04-29 Thread Andrew Sharpe
I'm being picky here, so beware :) I am using the solution task with success, however I find the resource messages that it displays during execution annoying. The ones I'm talking about read like: read in x resources from... Writing resource file... Done and in my application there are a lot of

Re: [Nant-users] Debugging

2004-04-29 Thread Gert Driesen
didn't think of that yet, feel free to update the faq ;) - Original Message - From: "Ian MacLean" <[EMAIL PROTECTED]> To: "James Geurts" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 6:24 PM Subject: Re: [Nant-users] Debugging > You can a

Re: [Nant-users] Debugging

2004-04-29 Thread Ian MacLean
You can also make this smoother by going into the configuration manager and unchecking all the build check boxes. That way you don't have to wait while it tries to build and fails each time. Ian James Geurts wrote: Cool, thanks Gert. Jim http://nant.sourceforge.net/faq.html#building-vsnet

Re: [Nant-users] spaces in paths??

2004-04-29 Thread Gert Driesen
use :       program="db_ghost" basedir="c:\program files\DB Ghost\">                                   Let me know if you still have problems.   Gert      - Original Message - From: Bob Archer To: [EMAIL PROTECTED]

Re: [Nant-users] could not move file if target exists

2004-04-29 Thread Gert Driesen
Dirk, What version of NAnt are you using ? Gert - Original Message - From: "Helbig, Dirk (EXTERN: HUD)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 4:17 PM Subject: [Nant-users] could not move file if target exists > Hi, > > I want to move a file to ano

[Nant-users] spaces in paths??

2004-04-29 Thread Bob Archer
Hi All,   I am doing this:           program="db_ghost"     basedir="c:\program files\DB Ghost\"         commandline="c:\program files\DB Ghost\SelectionLogs\ValidateAndUp

[Nant-users] How to generate build logs in HTML

2004-04-29 Thread zee
How can I make my solutions generate a build log in HTML like the one found when you compile the project at http://www.codeproject.com/csharp/CommandBar.asp I call VS through command line and it will be nice to have an HTML log. Thanks Zee -

Re: [Nant-users] Debugging

2004-04-29 Thread James Geurts
Cool, thanks Gert. Jim > http://nant.sourceforge.net/faq.html#building-vsnet-1 > > Hope this helps, > > Gert > - Original Message - > From: "James Geurts" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, April 29, 2004 3:07 PM > Subject: [Nant-users] Debugging > > >> Hey al

[Nant-users] could not move file if target exists

2004-04-29 Thread Helbig, Dirk (EXTERN: HUD)
Hi, I want to move a file to another folder. If the target file exists the operation fails. I set the "overwrite"-property to "true" but it does not work. Is it a bug? thanks Dirk --- This SF.Net email is sponsored by: Oracle 10g Get certified

Re: [Nant-users] the TRACE Flag

2004-04-29 Thread Gert Driesen
Florian,   This was fixed post-0.83 and is available in the 0.84 final release and the 0.85 nightly builds ...   I hope to make an inventory of things to do before the 0.85 release in the coming week or so ...  But after that, this list still needs to be discussed with the project admins and

Re: [Nant-users] Debugging

2004-04-29 Thread Gert Driesen
http://nant.sourceforge.net/faq.html#building-vsnet-1 Hope this helps, Gert - Original Message - From: "James Geurts" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 3:07 PM Subject: [Nant-users] Debugging > Hey all, > > Would someone be willing to add some in

[Nant-users] Debugging

2004-04-29 Thread James Geurts
Hey all, Would someone be willing to add some information to the wiki about how to attach a debugger (VS.Net and/or other) to NAnt? I still haven't taken the time to explore this option, but I think it would definitely help out with creating custom tasks, etc. Thanks Jim ---

[Nant-users] properties?

2004-04-29 Thread Merrill Cornish
I'm running NAnt 0.84. The documentation for the target is strange. It lists no input file to be compiled property either optional or required. But, it does list a required output property. There is a fileset nested element, which implies that one target can be used to compile a while set

[Nant-users] the TRACE Flag

2004-04-29 Thread Florian Benischke
Hi there,   I’m using the nant 0.83 final and recognized that it doesn’t uses the /d:TRACE option when using the solution task, even though the option is included in the csproj file.   It looks like nant doesn’t process the “DefineConstants” attribute in the node of the project file, s

Re: [Nant-users] Problem following upgrade from Win2000 to XP

2004-04-29 Thread James Geurts
Hi Brian, It might be worth opening up the csproj file (with Notepad or something similar) that references the System.Data.DLL and making sure that the hint path is set to the 1.1 framework directory. Jim > Hi, > My NAnt script which was working fine is now hitting a problem. > > > >

RE: [Nant-users] Problem following upgrade from Win2000 to XP

2004-04-29 Thread Brian Etheridge
That was it, Gert. By specifying the command line option '/k:net-1.1' I have resolved the problem. Thank you -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 12:57 PM To: Brian Etheridge; [EMAIL PROTECTED] Subject: Re: [Nant-users] Problem f

Re: [Nant-users] Problem following upgrade from Win2000 to XP

2004-04-29 Thread Gert Driesen
Brian, Nant 0.84 (and earlier) target the .NET Framework 1.0 by default. When you first install .NET 1.0 and then install 1.1, both 1.0 and 1.1 will be available, and NAnt 0.84 (and earlier) will target .NET 1.0. This was changed post 0.84 to use target the runtime on which NAnt is executing. se

[Nant-users] Problem following upgrade from Win2000 to XP

2004-04-29 Thread Brian Etheridge
Hi, My NAnt script which was working fine is now hitting a problem. This target is being executed on a new machine, which is running XP Professional. The old machine was running Win2000. The problem I am getting is: --