C# 클래스 FluentBuild.BuildFile

Represents a Build file that can be run
파일 보기 프로젝트 열기: SkightTeam/eLiteWeb 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
IsInErrorState bool

공개 메소드들

메소드 설명
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

보호된 메소드들

메소드 설명
SetErrorState ( ) : void

메소드 상세

AddTask() 공개 메소드

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
리턴 void

AddTask() 공개 메소드

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
리턴 void

BuildFile() 공개 메소드

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

ClearTasks() 공개 메소드

Clears the task list
public ClearTasks ( ) : void
리턴 void

InvokeNextTask() 공개 메소드

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

SetErrorState() 보호된 정적인 메소드

protected static SetErrorState ( ) : void
리턴 void

프로퍼티 상세

IsInErrorState 공개적으로 정적으로 프로퍼티

public static bool IsInErrorState
리턴 bool