C# Class FluentBuild.BuildFile

Represents a Build file that can be run
ファイルを表示 Open project: SkightTeam/eLiteWeb Class Usage Examples

Public Properties

Property Type Description
IsInErrorState bool

Public Methods

Method 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

Protected Methods

Method Description
SetErrorState ( ) : void

Method Details

AddTask() public method

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
return void

AddTask() public method

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
return void

BuildFile() public method

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

ClearTasks() public method

Clears the task list
public ClearTasks ( ) : void
return void

InvokeNextTask() public method

Invokes the next task in the queue
public InvokeNextTask ( ) : void
return void

SetErrorState() protected static method

protected static SetErrorState ( ) : void
return void

Property Details

IsInErrorState public_oe static_oe property

public static bool IsInErrorState
return bool