Re: [NAnt-users] properties in functions

2009-04-07 Thread Guy Metz
Your close, you don't need the ${} around the property name inside and expression.change: to: On Tue, Apr 7, 2009 at 2:26 PM, Nathan Franzen wrote: > I'm coming to NAnt from an ant background, but I'm trying to adapt. > The documentation for > > says that it's deprecated & recomm

Re: [NAnt-users] Using a property as a counter

2007-12-11 Thread Guy Metz
Is the syntax you sent exactly what you have in the file. Shouldn't the if task be a child of the Do element? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken Rogoway Sent: Tuesday, December 11, 2007 4:27 PM To: nant-users@lists.sourceforge.net Subject:

Re: [NAnt-users] linking multiple build files

2007-07-13 Thread Guy Metz
John, First I would strongly recommend that you checkout the documentation and examples at http://nant.sf.net. It will go a long way toward answering your questions. I would structure the master build something like this, assuming the order of dependency betweeen your projects. Also assuming tha

Re: [NAnt-users] task not passing properties.

2006-10-25 Thread Guy Metz
Are the properties that you are trying to reset defined in your common include file? If they are then the value would by default be reset to the value in the include. We have a similar situation where we want the properties to have one value by default in all of the component builds but be able to

Re: [NAnt-users] Hello guys this is the error I am getting whilecompiling VS2005 .net application

2006-10-24 Thread Guy Metz
Kumar From your nant log: [exec] Microsoft (R) Build Engine Version 2.0.50727.42 [exec] [Microsoft .NET Framework, Version 2.0.50727.42] [exec] Copyright (C) Microsoft Corporation 2005. All rights reserved. [exec] C:\Progra~1\omega\filenet\src\crystal\crystal.sln :

Re: [NAnt-users] Hello everyone in the group I am trying to compile a.net application that was created in VS2005 and getting error

2006-10-24 Thread Guy Metz
Kumar, It would be helpful if you could tell us what error you are getting. If it’s not too long you could attach the nant log.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kumar .S Sent: Tuesday, October 24, 2006 2:43 PM To: nant-users@lists.sourceforge.net

Re: [NAnt-users] Property values in node value

2006-09-21 Thread Guy Metz
  Yes try this   Release: ${releasenumber} Is From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Lemes Sent: Thursday, September 21, 2006 10:01 AM To: NAnt-users@lists.sourceforge.net Subject: [NAnt-users] Property values in node value   Hello there, I

RE: [Nant-users] Xpath guru needed...

2005-10-20 Thread Guy Metz
Because the Wix document has a namespace your Xpath expression must also reference the namespace. Remember that xpath matches on fully qualified names. Try the following (sorry in advance if I screwed up the syntax) http://schemas.microsoft.com/wix/2003/0

RE: [Nant-users] weird basedir issue (bug/bad ant implementation?)

2005-06-29 Thread Guy Metz
The base directory of the project is available in NAnt how you get at it depends on the version of NAnt for older versions (0.84) there is a property nant.project.basedir that will have the value in it. In 0.85 this property has been depreciated in favor of the function project::get-base-di