-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathdocfx.json
More file actions
111 lines (110 loc) · 2.74 KB
/
docfx.json
File metadata and controls
111 lines (110 loc) · 2.74 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
// "metadata": [
// {
// "src": [
// {
// "files": [
// "**/Mapster.sln"
// ],
// "src": "../src"
// }
// ],
// "includeExplicitInterfaceImplementations": false,
// "disableDefaultFilter": false,
// // "filter": "config/filterConfig.yml",
// "properties": {
// "TargetFramework" : "net9.0"
// },
// "noRestore": false,
// "output": "api",
// "memberLayout": "samePage",
// "outputFormat": "apiPage"
// }
// ],
"build": {
"globalMetadata": {
"_appTitle": "Mapster - The Mapper of Your Domain",
"_appName": "Mapster",
"_appFaviconPath": "images/mapster-logo.svg",
"_appLogoPath": "images/mapster-logo.svg",
"_copyrightFooter": "© 2025 Here comes your Name, All rights reserved.",
"_ownerName": "Awesome Developer",
"_githubProfileLink": "https://github.com/MapsterMapper",
"_enableSearch": true,
"_disableAffix": false,
"_disableBreadcrumb": false,
"_disableNextArticle": false,
"_disableTocFilter": false,
"_disableToc": false,
"_lang": "en",
"_gitConribute": {
"branch": "development"
},
"pdf": false
},
"content": [
{
"files": [
"articles/**.md",
"articles/toc.yml",
"articles/**/toc.yml",
"toc.yml",
"index.md"
],
"exclude": [
"**/.include/**",
"articles/_Sidebar.md"
]
},
{
"src": "../",
"files": [
"README.md"
]
},
{
"files": [
"api/Reference.md"
],
// Include the following lines, if we are generating metadata API Docs
"exclude": [
"api/**.yml",
"index.md"
]
}
],
"resource": [
{
"files": [
"images/*.{png,ico,svg}",
"articles/.assets/*.{png,gif,svg}"
],
"dot": true
}
],
"template": [
"default",
"modern"
],
"xref": [ "https://learn.microsoft.com/en-us/dotnet/.xrefmap.json" ],
"markdownEngineProperties": {
"markdigExtensions": [
"yaml",
"definitionlists",
"diagrams",
"advanced",
"alerts",
"footers",
"footnotes",
"medialinks"
]
},
"output": "_site",
"sitemap": {
"baseUrl": "https://mapstermapper.github.io/Mapster",
"priority": 0.1,
"changefreq": "monthly"
}
}
}