Skip to content

Commit 75fb4be

Browse files
committed
Add DocFx config
1 parent a4b346f commit 75fb4be

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

Nuke.GitHub.sln

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5340EBE2-8978-4B8F-86C7-3EEF99A95C44}"
1313
ProjectSection(SolutionItems) = preProject
1414
CHANGELOG.md = CHANGELOG.md
15+
docfx.json = docfx.json
1516
LICENSE.md = LICENSE.md
1617
README.md = README.md
1718
EndProjectSection

app-logo.png

1.94 KB
Loading

docfx.json

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"metadata": [
3+
{
4+
"src": [
5+
{
6+
"src": "src",
7+
"files": [
8+
"Nuke.GitHub/*.csproj"
9+
],
10+
"exclude": [
11+
"**/bin/**",
12+
"**/obj/**"
13+
]
14+
}
15+
],
16+
"dest": "api",
17+
"properties": {
18+
"TargetFramework": "netstandard2.0"
19+
}
20+
}
21+
],
22+
"build": {
23+
"content": [
24+
{
25+
"files": [
26+
"*.md",
27+
"**/*.yml"
28+
],
29+
"exclude": [
30+
"output/**/*",
31+
"GitVersion.yml"
32+
]
33+
}
34+
],
35+
"resource": [
36+
{
37+
"files": [
38+
"**.png"
39+
]
40+
}
41+
],
42+
"overwrite": "specs/*.md",
43+
"globalMetadata": {
44+
"_appTitle": "Nuke.GitHub Documentation",
45+
"_appFooter": "&copy; <a href=\"https://www.dangl-it.com\" target=\"_blank\">Dangl IT - Georg Dangl</a>",
46+
"_appLogoPath": "app-logo.png",
47+
"_appFaviconPath": "app-logo.png",
48+
"_enableSearch": true,
49+
"_gitUrlPattern": "github"
50+
},
51+
"dest": "output/docs",
52+
"template": [
53+
"default",
54+
"docstemplate"
55+
]
56+
}
57+
}

0 commit comments

Comments
 (0)