메소드 | 설명 | |
---|---|---|
AfterExecuteStep ( IBuildStep step, BuildContext context ) : void |
Called after a step has been executed during a help build.
|
|
BeforeExecuteStep ( IBuildStep step, BuildContext context ) : bool |
Called before a step is executed during a help build.
|
|
BuildCompleted ( BuildContext context ) : void |
Called after the project's help build has finished. The BuildContext.Cancel method has no affect at this point in the build process. This method is the final step before the build statistics are displayed. This method is always invoked if BuildStarting is invoked, regardless of whether an exception is thrown in any of the other methods, BuildContext.Cancel has been called, or an exeception has been thrown by the build engine. To determine whether a help build failed or succeeded, examine the value of the BuildContext.BuildState property. |
|
BuildStarting ( BuildContext context ) : void |
Called before the project's help build starts.
|
public AfterExecuteStep ( IBuildStep step, BuildContext context ) : void | ||
step | IBuildStep | |
context | BuildContext | Provides information about the build process. |
리턴 | void |
public BeforeExecuteStep ( IBuildStep step, BuildContext context ) : bool | ||
step | IBuildStep | |
context | BuildContext | Provides information about the build process. |
리턴 | bool |
public BuildCompleted ( BuildContext context ) : void | ||
context | BuildContext | Provides information about the build process. |
리턴 | void |
public BuildStarting ( BuildContext context ) : void | ||
context | BuildContext | Provides information about the build process. |
리턴 | void |