Ian MacLean wrote:
I assume you also want the script to execute on that remote server ?
One easy option ( if that server is a windows box ) could be to use
PsExec [1] which allows you to execute commands on remote machines.
From what I can tell about PsExec, it requires running from an
admin
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
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...
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 .