This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.MkDocs.
Summary
Run the builtin development server async in working directory.
- Assembly
- Cake
.MkDocs .dll - Namespace
- Cake
.MkDocs - Containing Type
- MkDocsAliases
Syntax
public static Task MkDocsServeAsync(this ICakeContext context)
Examples
var task = MkDocsServeAsync();
// Do work...
task.Wait();
Remarks
This method will block build process. Use Ctrl+C
in console to quit
or use System.Threading.CancellationToken
to cancel task programmatically.
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
Return Value
Type | Description |
---|---|
Task | Long running task. |