Add docfx support
This commit is contained in:
parent
942306d916
commit
a63511a4f4
4 changed files with 58 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -8,6 +8,9 @@
|
|||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
api/
|
||||
site/
|
||||
|
||||
.vscode/
|
||||
*.data
|
||||
|
||||
|
|
|
|||
46
Raylib-cs/docfx.json
Normal file
46
Raylib-cs/docfx.json
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
|
||||
"metadata": [
|
||||
{
|
||||
"src": [
|
||||
{
|
||||
"src": "../.",
|
||||
"files": [
|
||||
"**/*.csproj"
|
||||
]
|
||||
}
|
||||
],
|
||||
"dest": "api"
|
||||
}
|
||||
],
|
||||
"build": {
|
||||
"content": [
|
||||
{
|
||||
"files": [
|
||||
"**/*.{md,yml}"
|
||||
],
|
||||
"exclude": [
|
||||
"site/**"
|
||||
]
|
||||
}
|
||||
],
|
||||
"resource": [
|
||||
{
|
||||
"files": [
|
||||
"images/**"
|
||||
]
|
||||
}
|
||||
],
|
||||
"output": "site",
|
||||
"template": [
|
||||
"default",
|
||||
"modern"
|
||||
],
|
||||
"globalMetadata": {
|
||||
"_appName": "raylib-cs",
|
||||
"_appTitle": "raylib-cs",
|
||||
"_enableSearch": true,
|
||||
"pdf": true
|
||||
}
|
||||
}
|
||||
}
|
||||
7
Raylib-cs/index.md
Normal file
7
Raylib-cs/index.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
_layout: landing
|
||||
---
|
||||
|
||||
# Raylib-cs
|
||||
|
||||
C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||
2
Raylib-cs/toc.yml
Normal file
2
Raylib-cs/toc.yml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
- name: API
|
||||
href: api/
|
||||
Loading…
Reference in a new issue