Skip to content

matthew-matvei/DotnetGeneratingDocumentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dotnet Generating Documentation

This sample demonstrates generating scoped documentation of .NET projects.

Getting Started

  1. Build the solution

    dotnet build

    The above should involve restoring nuget packages, which includes the docfx command-line tool.

  2. Build and serve the documentation for Contracts in the solution (you may need to add the docfx.console/{version}/tools directory to your PATH)

    ```sh
    docfx ./docs/contracts/dtos/docfx.json --serve
    ```
    
  3. Feel free to modify files within docs subdirectories. A brief outline of these files, relative to docs/contracts/dtos are:

    • docfx.json: The configuration that the docfx tool uses to construct static documentation from .NET source code. See docfx.json Format for more
    • index.md: The main landing page of the scoped documentation. For the purposes of this sample, the 'scope' chosen is the Contracts project of the DotnetGeneratingDocumentation solution
    • toc.yml: Configuration for the main site navigation
    • overview/toc.yml: Configuration for the 'Overview' directory's navigation
    • api directory: Contains mostly generated (by docfx) files. api/index.md is the landing page for the 'Api Documentation'
    • images: Houses any visual resources referenced in documentation that is to be hosted on the site
    • _site: Once the docfx command has been run as described in the previous step, this generated directory serves as the web root for the documentation site

For further details, see Getting Started with DocFX.

Customising Templates / Styles

  • Following documentation here, you can customise content and appearance of the built documentation site. This sample uses a minimalism theme defined within docs/contracts/dtos/templates. Based on the docfx.json's build.template property, files are merged between the default theme and the custom minimalism theme, with the minimalism theme taking precedence.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages