-
Notifications
You must be signed in to change notification settings - Fork 79
/
docfx.json
107 lines (107 loc) · 2.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"metadata":
[
{
"src":
[
{
"files": [ "src/Npgsql/Npgsql.csproj" ],
"exclude": [ "src/MSI/**", "src/VSIX/**", "**/bin/**", "**/obj/**" ],
"src": "Npgsql/"
}
],
"dest": "obj/api/Npgsql",
"properties":
{
"TargetFramework": "net8.0"
}
},
{
"src":
[
{
"files": [ "src/**/*.csproj" ],
"exclude": [ "**/bin/**", "**/obj/**", "Properties/NpgsqlStrings.*" ],
"src": "EFCore.PG"
}
],
"dest": "obj/api/EFCore.PG",
"properties":
{
"TargetFramework": "net8.0"
}
}
],
"build":
{
"template":
[
"default",
"modern"
],
"content":
[
{
"files": [ "**/*.yml" ],
"src": "obj/api/Npgsql",
"dest": "doc/api"
},
{
"files": [ "**/*.yml" ],
"src": "obj/api/EFCore.PG",
"dest": "efcore/api"
},
{
"files": [ "**.md", "toc.yml" ],
"src": "conceptual/Npgsql",
"dest": "doc"
},
{
"files": [ "**.md", "toc.yml" ],
"src": "conceptual/EFCore.PG",
"dest": "efcore"
},
{
"files": [ "**.md", "toc.yml" ],
"src": "conceptual/EF6.PG",
"dest": "ef6"
},
{
"files": [ "*.md", "dev/**.md", "toc.yml" ]
}
],
"resource":
[
{
"files": [ "img/**", "styles/**", "CNAME" ]
},
{
"files": [ "**" ],
"src": "favicons"
}
],
"output": "_site",
"xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ],
"globalMetadata": {
"_appTitle": "Npgsql Documentation",
"_appFooter": "© Copyright 2024 The Npgsql Development Team",
"_appLogoPath": "img/logo.svg",
"_enableSearch": true,
"_gitContribute": {
"branch": "main"
}
},
"fileMetadata": {
"_gitContribute" : {
"obj/api/Npgsql/**.yml": {
"repo": "https://github.com/npgsql/Npgsql",
"branch": "stable"
},
"obj/api/EFCore.PG/**.yml": {
"repo": "https://github.com/npgsql/Npgsql.EntityFrameworkCore.PostgreSQL",
"branch": "stable"
}
}
}
}
}