2025-02-19 09:24:26 -08:00
|
|
|
# How to build and run the website
|
2025-01-30 19:04:26 -05:00
|
|
|
|
2025-02-19 09:24:26 -08:00
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
- dotnet 8.0 or later
|
|
|
|
|
|
|
|
## Build
|
2025-01-30 19:04:26 -05:00
|
|
|
|
|
|
|
Firstly, go to autogen/dotnet folder and run the following command to build the website:
|
2025-02-19 09:24:26 -08:00
|
|
|
|
2025-01-30 19:04:26 -05:00
|
|
|
```bash
|
|
|
|
dotnet tool restore
|
2025-02-19 09:24:26 -08:00
|
|
|
dotnet tool run docfx ../docs/dotnet/docfx.json --serve
|
2025-01-30 19:04:26 -05:00
|
|
|
```
|
|
|
|
|
2025-02-19 09:24:26 -08:00
|
|
|
After the command is executed, you can open your browser and navigate to `http://localhost:8080` to view the website.
|