Summary
A base class for PVCS tasks that deal with project databases.
- Assembly
- NAnt
.Contrib .dll - Namespace
- NAnt
.Contrib .Tasks .PVCS - Base Types
-
- ExternalProgramBase
- PVCSTask
- Derived Types
graph BT
Type-->Base0["PVCSTask"]
click Base0 "/api/NAnt.Contrib.Tasks.PVCS/PVCSTask"
Base0-->Base1["ExternalProgramBase"]
Type["PVCSProjectDatabaseTask"]
class Type type-node
Derived0["PVCSAddUserTask"]-->Type
click Derived0 "/api/NAnt.Contrib.Tasks.PVCS/PVCSAddUserTask"
Derived1["PVCSMultipleEntityTask"]-->Type
click Derived1 "/api/NAnt.Contrib.Tasks.PVCS/PVCSMultipleEntityTask"
Derived2["PVCSSingleEntityTask"]-->Type
click Derived2 "/api/NAnt.Contrib.Tasks.PVCS/PVCSSingleEntityTask"
Syntax
public abstract class PVCSProjectDatabaseTask : PVCSTask
Remarks
This class can be used as a base class for PVCS tasks that operate against a project database. It provides common attributes and functionality for such tasks.
Properties
Name | Value | Summary |
---|---|---|
ExeName | string |
Gets the executable name for the command-line tool to run for the PVCS task.
Inherited from PVCSTask
|
IncludeSubprojects | bool |
Gets or sets a value indicating whether the operation should include subprojects.
|
Password | string |
Gets or sets the password to use when connecting to the project database.
|
PCLICommandName | string |
Gets the PCLI command name that corresponds to the operation the task performs.
Inherited from PVCSTask
|
ProgramArguments | string |
Gets the program arguments with which to run the wrapped PVCS process.
Inherited from PVCSTask
|
ProjectDatabase | string |
Gets or sets the project database to utilize during the operation.
|
ProjectPath | string |
Gets or sets the project path to utilize during the operation.
|
PVCSBin | string |
Gets or sets the location of the PVCS binary command-line tools.
Inherited from PVCSTask
|
Supports |
bool |
Gets a value indicating whether the specific task implementation supports the
includesubprojects
task attribute. If not, an exception will be thrown if an attempt is made to set the attribute.
|
UserId | string |
Gets or sets the user ID to use when connecting to the project database.
|
Workspace | string |
Gets or sets the workspace to use when connecting to the project database.
|
Methods
Name | Value | Summary |
---|---|---|
Add |
void | |
ExecuteTask |
void |
Executes the task.
Inherited from PVCSTask
|
PrepareProcess |
void |
Prepares the process wrapped by this task for execution.
Inherited from PVCSTask
|
StartProcess |
Process |
Starts the process that is wrapped by this PVCS task.
Inherited from PVCSTask
|