DocFxPdfAliases.

DocFxPdf(ICakeContext, FilePath, DocFxPdfSettings) Method

Summary

Generates a PDF document for a specific docfx.json file using the specified settings.
Assembly
Cake.DocFx.dll
Namespace
Cake.DocFx
Containing Type
DocFxPdfAliases

Syntax

public static void DocFxPdf(this ICakeContext context, FilePath configFile, DocFxPdfSettings settings)

Examples

DocFxPdf("./docs/docfx.json", new DocFxPdfSettings()
{
    OutputPath = "./artifacts/docs",
    TemplateFolder = "default"
});

Attributes

Type Description
CakeMethodAliasAttribute
CakeAliasCategoryAttribute

Parameters

Name Type Description
context ICakeContext The Cake context.
configFile FilePath The optional path to a DocFx config file. If no value is passed the docfx.json file in the current working directory will be used.
settings DocFxPdfSettings The optional DocFx settings. If no settings are passed default settings are used.

Return Value

Type Description
void