C# Class FluentBuild.BuildFile

Represents a Build file that can be run
Afficher le fichier Open project: SkightTeam/eLiteWeb Class Usage Examples

Méthodes publiques

Свойство Type Description
IsInErrorState bool

Méthodes publiques

Méthode Description
AddTask ( System.Action task ) : void

Adds a task for fb.exe to run in the order that it should be run

AddTask ( string name, System.Action task ) : void

Adds a task for fb.exe to run in the order that it should be run

BuildFile ( ) : System

Instantiates a build file and initializes the Tasks queue.

ClearTasks ( ) : void

Clears the task list

InvokeNextTask ( ) : void

Invokes the next task in the queue

Méthodes protégées

Méthode Description
SetErrorState ( ) : void

Method Details

AddTask() public méthode

Adds a task for fb.exe to run in the order that it should be run
public AddTask ( System.Action task ) : void
task System.Action The method to run
Résultat void

AddTask() public méthode

Adds a task for fb.exe to run in the order that it should be run
public AddTask ( string name, System.Action task ) : void
name string The name of the task (will be displayed when the task is run)
task System.Action The method to run
Résultat void

BuildFile() public méthode

Instantiates a build file and initializes the Tasks queue.
public BuildFile ( ) : System
Résultat System

ClearTasks() public méthode

Clears the task list
public ClearTasks ( ) : void
Résultat void

InvokeNextTask() public méthode

Invokes the next task in the queue
public InvokeNextTask ( ) : void
Résultat void

SetErrorState() protected static méthode

protected static SetErrorState ( ) : void
Résultat void

Property Details

IsInErrorState public_oe static_oe property

public static bool IsInErrorState
Résultat bool