-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocfx.json
56 lines (56 loc) · 1.05 KB
/
docfx.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
"metadata": [
{
"src": [
{
"files": [
"P2PNet/**/*.csproj",
"P2PBootstrap/**/*.csproj",
"P2PWidescan/**/*.csproj"
],
"exclude": [
"**/bin/**",
"**/obj/**",
"**/node_modules/**"
]
}
],
"dest": "api"
}
],
"build": {
"content": [
{
"files": [
"**/*.{md,yml}"
],
"exclude": [
"docs/**"
]
}
],
"resource": [
{
"files": [
"p2pnet_logo.png"
]
}
],
"output": "docs",
"template": [
"default",
"modern"
],
"globalMetadata": {
"_appTitle": "P2PNetDocs",
"_appLogoPath": "misc/p2plogo.svg",
"_appFaviconPath": "misc/p2pnet_logo.png",
"_disableContribution": true,
"_disableNavbar": false,
"_disableSidebar": false,
"_enableSearch": true,
"pdf": true
}
}
}