This is the HOMEPAGE.
Refer to Markdown for how to write markdown files.
Quick Start Notes:
- Add images to the images folder if the file is referencing an image.
API Docs Dev
Docfx generates .NET API docs in 2 stages:
The metadata stage uses the
metadataconfig to produce .NET API YAML files at themetadata.destdirectory.The build stage transforms the generated .NET API YAML files specified in
build.contentconfig into HTML files.
These 2 stages can run independently with the docfx metadata command and the docfx build command. The docfx root command runs both metadata and build.
dotnet tool update -g docfx
dotnet build src/PluginCore.IPlugins/PluginCore.IPlugins.csproj --configuration Release
dotnet build src/PluginCore/PluginCore.csproj --configuration Release
dotnet build src/PluginCore.IPlugins.AspNetCore/PluginCore.IPlugins.AspNetCore.csproj --configuration Release
dotnet build src/PluginCore.AspNetCore/PluginCore.AspNetCore.csproj --configuration Release
cd docfx_project
docfx metadata
docfx build
docfx docfx.json --serve
# To preview your local changes, save changes then run this command in a new terminal to rebuild the website:
docfx docfx.json