RE: [Nant-users] NANT 0.85 - resgen chokes on third party dependency?

2005-03-23 Thread Gert Driesen
Hi Jeff, Did you reference that third party assembly in the task ? Do you have a repro for this issue that you can share ? Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Jeff Hoover > Sent: dinsdag 22 maart 2005 22:30 > To: nant-users@

[Nant-users] NANT 0.85 - resgen chokes on third party dependency?

2005-03-23 Thread Jeff Hoover
I'm just starting with NANT and have a problem that appears on both 0.84 and 0.85-rc2. I've done a fair amount of googling and searching the nant-users archive, but I don't have a solid answer yet. So, in my csc task, I have a resources section: that cranks through several files succ

RE: [Nant-users] Error from exec devenv task, works well from vs.net

2005-03-23 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Jain, Manish (GE Consumer Finance, Contractor) > Sent: donderdag 24 maart 2005 0:04 > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] Error from exec devenv task, works well > from v

[Nant-users] Bug in macro expansion

2005-03-23 Thread Ray Johnson
  I tracked down a bug related to Macro expansion of VS.Net variables within NANT.  The symptom I was seeing was that macros like $(TargetName) and other target related macros were empty (null).  Obviously, this broke various asspects of the build.   I eventually was able to debug the probl

[Nant-users] Error from exec devenv task, works well from vs.net

2005-03-23 Thread Jain, Manish (GE Consumer Finance, Contractor)
I get following error from nant script exec devenv task whereas code gets complied from devenv, error CS1548: Cryptographic failure while signing assembly 'a\b\obj\Debug\AUEngine.dll' -- 'Error reading key file '..\..\Keys\xxx.snk' -- The system cannot find the path specified. ' Any clues? Thank

RE: [Nant-users] Bug in latest nant build...

2005-03-23 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Ray Johnson > Sent: woensdag 23 maart 2005 20:11 > To: [EMAIL PROTECTED]; 'Gert Driesen'; > nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] Bug in latest nant build... > > > > I g

RE: [Nant-users] Bug in latest nant build...

2005-03-23 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Ray Johnson > Sent: woensdag 23 maart 2005 20:04 > To: 'Gert Driesen'; nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] Bug in latest nant build... > > > > Well this is a somewhat l

RE: [Nant-users] Bug in latest nant build...

2005-03-23 Thread Ray Johnson
I got it to stop crashing by excluding the projects that did not have the required build configuration. (Obviously, it would help if 1) it didn't crash if you had a project in with the wrong config, and 2) that if such a project was present that it either didn't include it or at least told you i

RE: [Nant-users] Bug in latest nant build...

2005-03-23 Thread Ray Johnson
Well this is a somewhat large solution. Some of the projects within the solution do not have the build configuration I'm trying to build. Of course, I don't need those projects to be built in this particular build step. Not sure why it doesn't attempt to just skip those projects like VS.Net wo

RE: [Nant-users] Nant 0.85RC2 and log4net versions

2005-03-23 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Michael Dang > Sent: dinsdag 22 maart 2005 22:15 > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] Nant 0.85RC2 and log4net versions > > Hi, > > Nant .085RC2 is bundled with log4net

Re: [Nant-users] Excluding directories in filesets

2005-03-23 Thread Leonardo Quijano Vincenzi
That did the trick. I don't know why I didn't see it before. Thanks. Leonardo On Fri, 18 Mar 2005 12:38:10 +0800, Troy Laurin <[EMAIL PROTECTED]> wrote: > Does the setting the "includeemptydirs" attribute on the task > prevent the directories being created in the target location? > > I'm not s

Re: [Nant-users] Bug in latest nant build...

2005-03-23 Thread Gert Driesen
Ray, Can you verify whether the name of the build configuration that you specified on the task matches a build configuration for the project(s) that you're building ? A repro for this issue is definitely welcome. Gert - Original Message - From: "Ray Johnson" <[EMAIL PROTECTED]> To: ;

[Nant-users] Bug in latest nant build...

2005-03-23 Thread Ray Johnson
C:\src\devtrunk\FullTilt\FT_Client>\src\nant-0.85-nightly-2005-03-22\build\net-1.1.win32\nant-0.85-debug\bin\NAnt.exe debug_proNAnt 0.85 (Build 0.85.1908.0; dev; 3/23/2005)Copyright (C) 2001-2005 Gerry Shawhttp://nant.sourceforge.net   Buildfile: file:///C:/src/devtrunk/FullTilt/FT_Client/clie

[Nant-users] Nant 0.85RC2 and log4net versions

2005-03-23 Thread Michael Dang
Hi, Nant .085RC2 is bundled with log4net version 1.2.1.40796. Is this a new release of log4net? I went to the log4net sourceforge site to check the latest distributable but it only has the log4net-beta-8 from 7-15-2003 v1.2.0.30714. I use log4net in a few other projects and it will give a com

[Nant-users] NANT and relative paths

2005-03-23 Thread Ray Johnson
  We are trying to get a large set of C++ projects working under NANT.  I'm seeing a big problem with relative paths.  In many of our projects we have library references (Linker->General->Additional Library Directories) that use relative paths to other parts of our source tree.  Unfortunatel