-
Notifications
You must be signed in to change notification settings - Fork 867
/
Copy pathdocfx.json
64 lines (64 loc) · 1.48 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
57
58
59
60
61
62
63
64
{
"$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
"metadata": [
{
"src": [
{
"files": [
"src/Docfx.App/*.csproj",
"src/Docfx.Dotnet/*.csproj"
],
"src": "../"
}
],
"dest": "api",
"outputFormat": "apiPage"
}
],
"build": {
"content": [
{
"files": [ "**/*.{md,yml}" ],
"exclude": [ "_site/**", "obj/**" ]
}
],
"resource": [
{
"files": [ "**/images/**", "**/media/**", "codesnippet/**" ],
"exclude": [ "_site/**", "obj/**" ]
},
{
"src": "../schemas",
"files": [ "**/*.json" ],
"dest": "schemas"
}
],
"postProcessors": [ "ExtractSearchIndex" ],
"globalMetadata": {
"_appTitle": "docfx",
"_appName": "docfx",
"_appFooter": "<span>Supported by the <a href=\"https://dotnetfoundation.org\">.NET Foundation</a>. Made with <a href=\"https://dotnet.github.io/docfx\">docfx</a></span>",
"_googleAnalyticsTagId": "G-Q5N6XJHEX5",
"pdf": true
},
"markdownEngineProperties": {
"alerts": {
"TODO": "alert alert-secondary"
}
},
"sitemap": {
"baseUrl": "https://dotnet.github.io/docfx",
"priority": 0.5,
"changefreq": "daily"
},
"xref": [
"../.xrefmap.json"
],
"output": "_site",
"template": [
"default",
"modern",
"template"
]
}
}