NAnt SDK Documentation - v0.85-nightly-2005-11-09

AbstractSourceControlTask.CommandLineArguments Property

[This is preliminary documentation and subject to change.]

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.

[Visual Basic]
<TaskAttribute(Required:=False, Name:="commandline", ExpandProperties:=True, ProcessXml:=True)>
Public Property CommandLineArguments As String
[C#]
[TaskAttribute(Required=False, Name="commandline", ExpandProperties=True, ProcessXml=True)]
public string CommandLineArguments {get; set;}

Remarks

Missing <remarks> documentation for P:NAnt.SourceControl.Tasks.AbstractSourceControlTask.CommandLineArguments

Example

<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:

c:\Program Files\TortoiseCVS\cvs.exe -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nant -q checkout -n nant

See Also

AbstractSourceControlTask Class | NAnt.SourceControl.Tasks Namespace