1 parent a418b7a commit 317044fCopy full SHA for 317044f
2 files changed
.config/dotnet-tools.json
@@ -6,7 +6,15 @@
6
"version": "0.0.1-preview.304",
7
"commands": [
8
"dotnet-validate"
9
- ]
+ ],
10
+ "rollForward": false
11
+ },
12
+ "docfx": {
13
+ "version": "2.78.5",
14
+ "commands": [
15
+ "docfx"
16
17
18
}
19
20
.github/workflows/continuous-integration.yml
@@ -29,6 +29,7 @@ jobs:
29
dotnet-version: |
30
6.x
31
8.x
32
+ 10.x
33
34
- name: Restore NuGet packages
35
run: dotnet restore
@@ -51,3 +52,10 @@ jobs:
51
52
dotnet tool restore
53
dotnet pack --no-build --verbosity normal
54
if: startsWith(matrix.os,'windows')
55
+
56
+ - name: Generate API documentation
57
+ run: |
58
+ dotnet tool restore
59
+ dotnet docfx docfx/docfx.json --warningsAsErrors
60
+ working-directory: QrCodeGenerator
61
+ if: startsWith(matrix.os,'ubuntu')
0 commit comments