C# Class CodeCake.CodeCakeHost

Base class for build objects.
Afficher le fichier Open project: SimpleGitVersion/CodeCake Class Usage Examples

Méthodes publiques

Méthode Description
Setup ( Action action ) : void

Registers the Setup operation.

Task ( string name ) : CakeTaskBuilder

Registers a named task.

Teardown ( Action action ) : void

Registers the Teardown action.

Méthodes protégées

Méthode Description
CodeCakeHost ( ) : System

Initializes a new host.

Private Methods

Méthode Description
Setup ( System.Action action ) : void
Teardown ( System.Action action ) : void

Method Details

CodeCakeHost() protected méthode

Initializes a new host.
protected CodeCakeHost ( ) : System
Résultat System

Setup() public méthode

Registers the Setup operation.
public Setup ( Action action ) : void
action Action Action to execute.
Résultat void

Task() public méthode

Registers a named task.
public Task ( string name ) : CakeTaskBuilder
name string Name of the task.
Résultat CakeTaskBuilder

Teardown() public méthode

Registers the Teardown action.
public Teardown ( Action action ) : void
action Action Action to execute.
Résultat void