This public enumerated type defines the build steps used when reporting progress during a build.

Namespace: SandcastleBuilder.Utils.BuildEngine
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 1.9.3.0

Syntax

C#
[SerializableAttribute]
public enum BuildStep
Visual Basic
<SerializableAttribute> _
Public Enumeration BuildStep

Members

Member nameValueDescription
None0The build has not yet started.
Initializing1Initializing to prepare for build.
ClearWorkFolder2The working folder is about to be created or cleared.
FindingTools3The builder is searching for Sandcastle and the HTML help compiler.
ValidatingDocumentationSources4The documentation source information is being validated and copied to the build folder.
GenerateSharedContent5The shared content files are being generated.
GenerateApiFilter6Generate the API filter for MRefBuilder
GenerateReflectionInfo7The reflection information is being generated by MRefBuilder.
GenerateNamespaceSummaries8Namespace summary information is being generated.
ApplyVisibilityProperties9The Visibility category properties are being applied to the reflection information file to remove unwanted items.
GenerateInheritedDocumentation10All <inheritDoc /> tags are being expanded.
TransformReflectionInfo11The reflection information is being transformed by XslTransform.
ModifyHelpTopicFilenames12Help topic filenames are being altered.
CopyStandardContent13The standard help file content (art, scripts, and styles) is being copied to the help project folder.
CopyConceptualContent14The conceptual content files are being copied.
CreateConceptualTopicConfigs15The conceptual content topic configuration files are being generated.
CopyAdditionalContent16The additional content files are being copied to the help project folder.
MergeTablesOfContents17The conceptual and additional content tables of contents are being merged.
GenerateIntermediateTableOfContents18The intermediate table of contents is being generated by XslTransform.
CreateBuildAssemblerConfigs19The sandcastle.configConceptual.configBuildAssembler files are being created.
MergeCustomConfigs20Custom build component configurations are being merged into the sandcastle.config file.
BuildConceptualTopics21Conceptual help file topics are being generated by BuildAssembler.
BuildReferenceTopics22API reference help file topics are being generated by BuildAssembler.
CombiningIntermediateTocFiles23The intermediate table of content files are being merged into a single file.
ExtractingHtmlInfo24Title and keyword index information is being extracted for the HTML Help 1 TOC and index and/or website TOC.
GenerateHelpFormatTableOfContents25The format-specific table of contents is being generated by XslTransform.
GenerateHelpFileIndex26The help file index is being generated.
GenerateHelpProject27The help project file is being generated.
CompilingHelpFile28The help file project is being compiled.
GenerateFullTextIndex29Generate full-text index for ASP.NET website search.
CopyingWebsiteFiles30The website files are being copied to the output path.
CleanIntermediates31The temporary help project files are being removed.
Completed32The build has completed successfully.
Canceled33The build was canceled by user request.
Failed34The build failed with an unexpected error.

See Also