forked from npgsql/doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocfx.json
90 lines (90 loc) · 2.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"metadata": [
{
"src": [
{
"files": [ "src/**/*.csproj" ],
"exclude": [ "src/MSI/**", "src/VSIX/**", "**/bin/**", "**/obj/**" ],
"cwd": "Npgsql/"
}
],
"dest": "obj/api/Npgsql",
"properties": {
"TargetFramework": "netstandard2.1"
}
},
{
"src": [
{
"files": [ "src/**/*.csproj" ],
"exclude": [ "**/bin/**", "**/obj/**", "Properties/NpgsqlStrings.*" ],
"cwd": "EFCore.PG"
}
],
"dest": "obj/api/EFCore.PG",
"properties": {
"TargetFramework": "netstandard2.1"
}
}
],
"build": {
"content": [
{
"files": [ "**/*.yml" ],
"cwd": "obj/api/Npgsql",
"dest": "doc/api"
},
{
"files": [ "**/*.yml" ],
"cwd": "obj/api/EFCore.PG",
"dest": "efcore/api"
},
{
"files": [ "**.md" ],
"cwd": "conceptual/Npgsql",
"dest": "doc"
},
{
"files": [ "**.md" ],
"cwd": "conceptual/EFCore.PG",
"dest": "efcore"
},
{
"files": [ "**.md" ],
"cwd": "conceptual/EF6.PG",
"dest": "ef6"
},
{
"files": [ "*.md", "dev/**.md", "toc.yml" ]
}
],
"resource": [
{
"files": [ "img/**", "CNAME" ]
}
],
"globalMetadata": {
"_appTitle": "Npgsql Documentation",
"_appFooter": "© Copyright 2020 The Npgsql Development Team",
"_appLogoPath": "img/logo.svg",
"_appFaviconPath": "img/favicon.ico",
"_enableSearch": true,
"_gitContribute": {
"branch": "master"
}
},
"fileMetadata": {
"_gitContribute" : {
"obj/api/Npgsql/**.yml": {
"repo": "https://github.com/npgsql/Npgsql",
"branch": "master"
},
"obj/api/EFCore.PG/**.yml": {
"repo": "https://github.com/npgsql/Npgsql.EntityFrameworkCore.PostgreSQL",
"branch": "master"
}
}
},
"dest" : "live"
}
}