RE: [Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Bill.Martin
] Behalf Of Brian Cantoni Sent: 03 May 2005 18:36 To: nant-users@lists.sourceforge.net Subject: [Nant-users] NAnt equivalent to Ant's I've been using NAnt for a few weeks and have migrated our Win32 app build to it. I'm looking for a way to load a set of properties from an external file, s

Re: [Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Merrill Cornish
Brian, You can create a NAnt script that contains only statements rather than targets. Then you can use an task in another NAnt script to call the properties-only script. All of the properties in the properties-only script will then be defined in the calling script. The effect is about the

[Nant-users] NAnt equivalent to Ant's

2005-05-03 Thread Brian Cantoni
I've been using NAnt for a few weeks and have migrated our Win32 app build to it. I'm looking for a way to load a set of properties from an external file, similar to Ant's method. NAnt's does not allow files as a source, so I'm curious what others have done for this type of solution? Ant se