File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 25
25
[Oo ]bj /
26
26
[Ll ]og /
27
27
28
+ # DocFx output
29
+ _api /
30
+ _site /
31
+
28
32
# Visual Studio 2015/2017 cache/options directory
29
33
.vs /
30
34
# Uncomment if you have tasks that create the project's static files in wwwroot
Original file line number Diff line number Diff line change @@ -3,7 +3,10 @@ SETLOCAL ENABLEEXTENSIONS
3
3
4
4
type docs\docfx.json > docfx.json
5
5
type docs\toc.yml > toc.yml
6
+ docfx metadata
6
7
docfx build docfx.json > docfx.log
8
+ DEL docfx.json 2 > NUL
9
+ DEL toc.yml 2 > NUL
7
10
@ IF NOT %ERRORLEVEL% == 0 (
8
11
type docfx.log
9
12
ECHO Error: docfx build failed. 1 >& 2
Original file line number Diff line number Diff line change 1
1
{
2
+ "metadata" : [
3
+ {
4
+ "src" : [
5
+ {
6
+ "files" : [
7
+ " src/**.csproj"
8
+ ],
9
+ "exclude" : [
10
+ " **/bin/**" ,
11
+ " **/obj/**" ,
12
+ " _site/**"
13
+ ]
14
+ }
15
+ ],
16
+ "dest" : " _api"
17
+ }
18
+ ],
2
19
"build" : {
3
20
"content" : [
4
21
{
You can’t perform that action at this time.
0 commit comments