Skip to content

Commit 55283eb

Browse files
nvborisenkodiemol
andauthored
[dotnet] Generate API documentation (#11968)
Co-authored-by: Diego Molina <[email protected]>
1 parent 8efae1b commit 55283eb

11 files changed

Lines changed: 96 additions & 80 deletions

File tree

dotnet/docs/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
###############
2+
# folder #
3+
###############
4+
/**/DROP/
5+
/**/TEMP/
6+
/**/packages/
7+
/**/bin/
8+
/**/obj/
9+
_site

dotnet/docs/api/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
###############
2+
# temp file #
3+
###############
4+
*.yml
5+
.manifest

dotnet/docs/api/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# PLACEHOLDER
2+
TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*!

dotnet/docs/articles/intro.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Add your introductions here!

dotnet/docs/articles/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Introduction
2+
href: intro.md

dotnet/docs/build.desc

Lines changed: 0 additions & 12 deletions
This file was deleted.

dotnet/docs/docfx.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"metadata": [
3+
{
4+
"src": [
5+
{
6+
"files": [
7+
"src/webdriver/WebDriver.csproj",
8+
"bin/**/*.dll"
9+
],
10+
"src": "../"
11+
}
12+
],
13+
"dest": "api",
14+
"includePrivateMembers": false,
15+
"disableGitFeatures": false,
16+
"disableDefaultFilter": false,
17+
"noRestore": false,
18+
"namespaceLayout": "flattened",
19+
"memberLayout": "samePage",
20+
"allowCompilationErrors": false
21+
}
22+
],
23+
"build": {
24+
"content": [
25+
{
26+
"files": [
27+
"api/**.yml",
28+
"api/index.md"
29+
]
30+
},
31+
{
32+
"files": [
33+
"articles/**.md",
34+
"articles/**/toc.yml",
35+
"toc.yml",
36+
"*.md"
37+
]
38+
}
39+
],
40+
"resource": [
41+
{
42+
"files": [
43+
"images/**"
44+
]
45+
}
46+
],
47+
"dest": "../../build/docs/api/dotnet",
48+
"globalMetadataFiles": [],
49+
"fileMetadataFiles": [],
50+
"template": [
51+
"default",
52+
"modern"
53+
],
54+
"postProcessors": [],
55+
"keepFileLink": false,
56+
"disableGitFeatures": false
57+
}
58+
}

dotnet/docs/docs.shfbproj

Lines changed: 0 additions & 68 deletions
This file was deleted.

dotnet/docs/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# This is the **HOMEPAGE**.
2+
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files.
3+
## Quick Start Notes:
4+
1. Add images to the *images* folder if the file is referencing an image.

dotnet/docs/toc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- name: Articles
2+
href: articles/
3+
- name: Api Documentation
4+
href: api/
5+
homepage: api/index.md

0 commit comments

Comments
 (0)