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.7.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.
ValidatingDocumentationSources3The documentation source information is being validated and copied to the build folder.
GenerateSharedContent4The shared content files are being generated.
GenerateApiFilter5Generate the API filter for MRefBuilder
GenerateReflectionInfo6The reflection information is being generated by MRefBuilder.
GenerateNamespaceSummaries7Namespace summary information is being generated.
ApplyVisibilityProperties8The Visibility category properties are being applied to the reflection information file to remove unwanted items.
GenerateInheritedDocumentation9All <inheritDoc /> tags are being expanded.
TransformReflectionInfo10The reflection information is being transformed by XslTransform.
ModifyHelpTopicFilenames11Help topic filenames are being altered.
CopyStandardContent12The standard help file content (art, scripts, and styles) is being copied to the help project folder.
CopyConceptualContent13The conceptual content files are being copied.
CreateConceptualTopicConfigs14The conceptual content topic configuration files are being generated.
CopyAdditionalContent15The additional content files are being copied to the help project folder.
MergeTablesOfContents16The conceptual and additional content tables of contents are being merged.
GenerateIntermediateTableOfContents17The intermediate table of contents is being generated by XslTransform.
CreateBuildAssemblerConfigs18The sandcastle.configConceptual.configBuildAssembler files are being created.
MergeCustomConfigs19Custom build component configurations are being merged into the sandcastle.config file.
BuildConceptualTopics20Conceptual help file topics are being generated by BuildAssembler.
BuildReferenceTopics21API reference help file topics are being generated by BuildAssembler.
CombiningIntermediateTocFiles22The intermediate table of content files are being merged into a single file.
ExtractingHtmlInfo23Title and keyword index information is being extracted for the HTML Help 1 TOC and index and/or website TOC.
GenerateHelpFormatTableOfContents24The format-specific table of contents is being generated by XslTransform.
GenerateHelpFileIndex25The help file index is being generated.
GenerateHelpProject26The help project file is being generated.
CompilingHelpFile27The help file project is being compiled.
GenerateFullTextIndex28Generate full-text index for ASP.NET website search.
CopyingWebsiteFiles29The website files are being copied to the output path.
CleanIntermediates30The temporary help project files are being removed.
Completed31The build has completed successfully.
Canceled32The build was canceled by user request.
Failed33The build failed with an unexpected error.

See Also