Skip to content

Commit

Permalink
docs: update articles/contributing/documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Jul 1, 2018
1 parent 99e7537 commit 62e75c1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/articles/contributing/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,33 @@ It will be transformed to:
> [!Caution]
> <caution content>
## Building documentation locally

You can build documentation locally with the help of the `DocFX_Build` Cake target.
Use the `DocFX_Serve` Cake target to build and run the documentation.

Windows (PowerShell):

```
.\build.ps1 -Target DocFX_Build
.\build.ps1 -Target DocFX_Serve
```

Windows (Batch):

```
.\build.bat -Target DocFX_Build
.\build.bat -Target DocFX_Serve
```

Linux/macOS (Bash):

```
./build.sh --target DocFX_Build
./build.sh --target DocFX_Serve
```


## See also

* [DocFX User Manual](https://dotnet.github.io/docfx/tutorial/docfx.exe_user_manual.html)
Expand Down

0 comments on commit 62e75c1

Please sign in to comment.