Summary
Command-line arguments for the program. The command line arguments are used to specify
any cvs command options that are not available as attributes. These are appended
after the command itself and are additive to whatever attributes are currently specified.
- Assembly
- NAnt
.SourceControl .dll - Namespace
- NAnt
.SourceControl .Tasks - Containing Type
- Abstract
Source Control Task
Syntax
[TaskAttribute("commandline")]
public string CommandLineArguments { get; set; }
Examples
<cvs-checkout cvsroot=":pserver:anonymous@cvs.sourceforge.net:/cvsroot/nant"
module="nant"
destination="e:\test\merillcornish\working"
readonly="true"
quiet="true"
commandline="-n"
cvsfullpath="C:\Program Files\TortoiseCVS\cvs.exe"
/>
Produces the cvs command:
Produces the cvs command:
c:\Program Files\TortoiseCVS\cvs.exe -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nant -q checkout -n nant
Attributes
Type | Description |
---|---|
Task |
Indicates that property should be treated as a XML attribute for the task. |
Value
Type | Description |
---|---|
string |