The task is used to delete a repository workspace.

Attributes

The task supports Team Build Attributes, Build Extensions Debugging Attributes, Build Extensions General Attributes, as well as, its own task specific attributes. Click on a link for more information on the common attributes.

The following table describes the task specific attributes for the task:

Task Specific Attributes
Attribute Description Required
name The name of the workspace. Yes

Notes

Examples

Delete a workspace

<target name="main">
  
  <xt:deleteWorkspace
    repositoryAddress="${repositoryAddress}"
    userId="${userId}"
    passwordFile="${passwordFile}"
    name="workspace.name"
  />
  
</target>