NAnt Help Task Reference <stlist> | NAnt.Contrib.Tasks () |
List items in StarTeam repositories.
This task was ported from the Ant task http://jakarta.apache.org/ant/manual/OptionalTasks/starteam.html#stlist
You need to have the StarTeam SDK installed for this task to function correctly.
Attribute | Type | Description | Required |
---|---|---|---|
rootstarteamfolder | string | Root StarTeam folder to begin operations on. Defaults to the root of the view. | True |
excludes | string | Accepts comma de-limited list of expressions to exclude from tree operations. If nothing is specified. NO filespecs are excluded. | False |
failonerror | bool | False | |
forced | bool | Default : false - force check in/out actions regardless of the status that StarTeam is maintaining for the file. | False |
if | bool | False | |
includes | string | Accepts comma de-limited list of expressions to include in tree operations. If nothing is set ALL filespecs are included. | False |
label | string | Label used for checkout. If no label is set latest state of repository is checked out. | False |
password | string | The password used for login. | False |
projectname | string | The name of the StarTeam project to be acted on | False |
recursive | bool | Default : true - should tasks recurse through tree. | False |
servername | string | Name of StarTeamServer. | False |
serverport | string | Port number of the StarTeam connection. | False |
unless | bool | False | |
url | string | One stop to set all parameters needed to connect to a StarTeam server. | False |
username | string | The StarTeam user name used for login. | False |
verbose | bool | False | |
viewname | string | The name of the StarTeam view to be acted on. | False |
Lists all files in a StarTeam repository.
<!-- constructs a 'url' containing connection information to pass to the task alternatively you can set each attribute manually --> <property name="ST.url" value="user:pass@serverhost:49201/projectname/viewname"/> <stlist rootstarteamfolder="/" recursive="true" url="${ST.url}"/>