Re: [Nant-users] Running NAnt remotely by passing some parameters

2005-05-20 Thread Ian MacLean
Sandeep wrote: I want to run a common NAnt script stored on a server remotely by passing some parameters (like system name, source control folder, mailing list etc.) dynamically. I am looking for feasible (not requiring much effort :)) options to satisfy the above requirement. I assume yo

Re: [Nant-users] Running NAnt remotely by passing some parameters

2005-05-20 Thread Merrill Cornish
Sandeep, When you launch NAnt, you can provide property values on the command line with the NAnt -buildfile:nantFilename -D:propertyName=propertyValue targetName You can include as many -DpropertyName=propertyValue declarations as you want on the command line that launches NAnt. Or...

[Nant-users] Running NAnt remotely by passing some parameters

2005-05-20 Thread Sandeep
Hi, I want to run a common NAnt script stored on a server remotely by passing some parameters (like system name, source control folder, mailing list etc.) dynamically. I am looking for feasible (not requiring much effort :)) options to satisfy the above requirement. I though of Cruise control .

RE: [Nant-users] Forcing Debug for Mono in tasks

2005-05-20 Thread Gert Driesen
Luke, The task does not yet support Mono. We're planning on adding Mono support to the task after the 0.85 release. Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Luke Venediger > Sent: vrijdag 20 mei 2005 16:13 > To: nant-users@lists.s

Re: [Nant-users] Forcing Debug for Mono in tasks

2005-05-20 Thread Luke Venediger
On 5/20/05, Gert Driesen <[EMAIL PROTECTED]> wrote: > Luke, > > The task does not yet support Mono. We're planning on adding Mono > support to the task after the 0.85 release. > > Gert > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of > > L

[Nant-users] Forcing Debug for Mono in tasks

2005-05-20 Thread Luke Venediger
Hi, I'm using Mono 1.1.7's mcs.exe compiler, and I've got a nant script that compiles a set of VS.Net projects. The problem is that I can't seem to force the mcs.exe compiler to output debugging information when it compiles the projects. I've looked in the nant.exe.config file and tried to add th

Re: [Nant-users] Replacing variables in script files

2005-05-20 Thread Merrill Cornish
Shelly, You use ${ ... } in a NAnt statement to cause whatever is between the curly braces to be "evaluated". The simplest evaluation is to just write a property name. You can also use it to evaluate function calls and so on. Since everything inside a ${ ... } is evaluated, there is no need t

Re: [Nant-users] Replacing variables in script files

2005-05-20 Thread Troy Laurin
Shelly, See if copying your scripts with a filterchain (replacestring filter) will help you... http://nant.sourceforge.net/release/latest/help/types/filterchain.html http://nant.sourceforge.net/release/latest/help/filters/index.html Note that using filterchains you cannot modify your scripts in p

[Nant-users] Replacing variables in script files

2005-05-20 Thread Shelly Midha
  I want to run a set of sql scripts while releasing the application. These sql scripts contain certain variable that need to be replaced while executing the query. A sample statament is:   "SELECT * FROM  ...vNewHire hr"   Where I want to replace ,, with the respective values stored as