-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocfx.json
More file actions
115 lines (115 loc) · 2.6 KB
/
Copy pathdocfx.json
File metadata and controls
115 lines (115 loc) · 2.6 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
112
113
114
115
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json",
"metadata": [
{
"src": [
{
"files": [
"**/MTGOSDK.dll"
],
"src": "dist/MTGOSDK/lib"
}
],
"output": "docs/_build/_xmldoc/MTGOSDK",
"filter": "docs/_build/docfx/filters.yml",
"categoryLayout": "nested",
"namespaceLayout": "nested",
"enumSortOrder": "declaringOrder",
"memberLayout": "samePage",
"disableGitFeatures": true,
"references": [
"dist/MTGOSDK/lib/**/*.dll"
]
},
{
"src": [
{
"files": [
"**/MTGOSDK.MSBuild.dll"
],
"src": "dist/MTGOSDK.MSBuild/lib"
}
],
"output": "docs/_build/_xmldoc/MTGOSDK.MSBuild",
"filter": "docs/_build/docfx/filters.yml",
"categoryLayout": "nested",
"namespaceLayout": "nested",
"enumSortOrder": "declaringOrder",
"memberLayout": "samePage",
"disableGitFeatures": true
},
{
"src": [
{
"files": [
"**/MTGOSDK.Win32.dll"
],
"src": "dist/MTGOSDK.Win32/lib"
}
],
"output": "docs/_build/_xmldoc/MTGOSDK.Win32",
"filter": "docs/_build/docfx/filters.yml",
"categoryLayout": "nested",
"namespaceLayout": "nested",
"enumSortOrder": "declaringOrder",
"memberLayout": "samePage",
"disableGitFeatures": true
}
],
"build": {
"content": [
{
"files": [
"**/*.{md,yml}"
],
"src": "docs/_build/_xmldoc",
"dest": "docs/api"
},
{
"files": [
"**/*.{md,yml}"
],
"src": "docs",
"dest": "docs",
"exclude": [
"_build/**"
]
},
{
"files": [
"index.md"
],
"src": "docs/_build/docfx"
}
],
"resource": [
{
"files": [
"assets/**",
"public/**"
]
}
],
"output": "docs/_build/_site",
"template": [
"default",
"modern",
"docs/_build/docfx"
],
"globalMetadata": {
"_appName": "MTGOSDK",
"_appTitle": "MTGOSDK",
"_appBasePath": "/MTGOSDK/",
"_appLogoPath": "assets/icon_28h_5mr.png",
"_appFaviconPath": "assets/favicon.png",
"_enableSearch": true,
"_githubUrl": "https://github.com/videre-project/MTGOSDK"
},
"rules": {
"InvalidAssemblyReference": {
"severity": "suggestion"
}
}
}
}