NAntContrib Help Task Reference <sscmbatch> | v0.85-rc1 |
[This is preliminary documentation and subject to change.]
Processes Surround SCM batch files.
Processes the batch commands found in the input file. Each line in the input file should contain a single Surround SCM command including proper command line options. The sscm command, Surround SCM server address, port number, username and password are not required for each command line.Attribute | Type | Description | Required |
---|---|---|---|
input | file | File to read commands from. | True |
output | file | File to direct all standard output to. When executing commands from the input file, all output is written to this file instead of being displayed on the screen. | False |
failonerror | bool | Determines if task failure stops the build, or is just reported. The default is true. | False |
if | bool | If true then the task will be executed; otherwise, skipped. The default is true. | False |
serverconnect | string | The address and port number of the Surround SCM server host computer. Format is server:port. If not entered, the last saved connection parameters are used. | False |
serverlogin | string | The username and password used to login to the Surround SCM server. Format is username:password. If not entered, the last saved login parameters are used. | False |
timeout | int | The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out. | False |
unless | bool | Opposite of if . If false then the task will be executed; otherwise, skipped. The default is false. | False |
verbose | bool | Determines whether the task should report detailed build log messages. The default is false. | False |
Attribute | Type | Description | Required |
---|---|---|---|
useruntimeengine | bool | Specifies whether the external program should be executed using a runtime engine, if configured. The default is false. | False |
Contains a collection of Argument elements.
Run the batch file ${src}/sscm.batch
on the server at localhost, port 4900 with username 'administrator' and a blank password. All script output is directed to the console.
<sscmbatch serverconnect="localhost:4900" serverlogin="administrator:" input="${src}/sscm.batch" />
Run the batch file ${src}/sscm.batch
on the server at localhost, port 4900 with username 'administrator' and a blank password. All script output is redirected to ${dist}/sscm.batch.out
.
<sscmbatch serverconnect="localhost:4900" serverconnect="administrator:" input="${src}/sscm.batch" output="${dist}/sscm.batch.out" />