Click or drag to resize
ActionBuilderPrepareForBuild Method
Performs any work needed to prepare Action for building.

Namespace: Kjs.AppLife.Update.Engine.Core.Design
Assembly: Kjs.AppLife.Update.Engine.Core.Design (in Kjs.AppLife.Update.Engine.Core.Design.dll) Version: 1.0.0.12 (4.0.0.0)
Syntax
public virtual void PrepareForBuild(
	BuildContext context
)

Parameters

context
Type: Kjs.AppLife.Update.Engine.Core.DesignBuildContext
A BuildContext representing the current state of the build process.
Remarks
The provided BuildContext can be used to log the builder's actions. It also provides a BuildDirectory property that represents the folder where the update package is being created. Any files placed in this folder will be included in the build package. If the builder's action requires additional files, they should be copied to the build path in PrepareForBuild(BuildContext); they can then be found by the action by looking in UpdatePackageDirectory.
See Also