forked from microsoft/MixedReality-SpectatorView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docfx.json
73 lines (73 loc) · 1.98 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
65
66
67
68
69
70
71
72
73
{
"metadata": [
{
// generate meta data for api docs
"src": [
{
"files": [ "**/*.cs"],
"src": "src/SpectatorView.Unity"
},
{
"files": [ "**/*.cs"],
"src": "src/HolographicCamera.Unity/Assets/HolographicCamera"
},
{
"files": [ "**/*.cs"],
"src": "samples/Build2019Demo.Unity/Assets/Demo"
}
],
"dest": "api"
}
],
"build": {
"content": [
{
"files": [ "README.md", "toc.yml" ],
"src": "."
},
{
"files": [ "*.yml"],
"src": "doc/build/api",
"dest": "api"
},
{
"files": [
"src/SpectatorView.Unity/**/*.md",
"src/SpectatorView.Native/**/*.md",
"samples/README.md",
"samples/Build2019Demo.Unity/README.md",
"samples/SpectatorView.Example.Unity/README.md",
"doc/*.md" ]
}
],
"resource": [
{
"files": ["index.html"],
"src": "doc"
},
{
"files": ["doc/**/*.png", "doc/**/*.ico"]
}
],
"template": [
// gets default template (html/css/jscript) from docfx and copies subsequent templates on top
"default",
"template/mr-sv"
],
"globalMetadata": {
// global docfx config - see docfx documentation for more config params (https://dotnet.github.io/docfx/tutorial/docfx.exe_user_manual.html)
"_appTitle": "MixedReality-SpectatorView Documentation",
"_enableSearch": true,
"_disableNavbar": false,
"_appLogoPath": "doc/images/spectatorview-logo.png",
"_appFaviconPath": "doc/images/favicon.ico",
"_gitContribute": {
"repo": "https://github.com/Microsoft/MixedReality-SpectatorView",
"branch": "master"
}
},
"markdownEngineName": "markdig",
"dest": "generated",
"xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ] //msdn xref service for resolving crefs
}
}