We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83cb5cb commit 7741b7fCopy full SHA for 7741b7f
doc/build.ps1
@@ -6,6 +6,9 @@ function Run-DotNet {
6
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
7
}
8
9
+# Cleanup
10
+if (Test-Path api) { rm api -Recurse -Force }
11
+
12
# Build docs
13
Run-DotNet tool restore
14
Run-DotNet docfx --logLevel=warning --warningsAsErrors docfx.json
doc/build.sh
@@ -9,6 +9,7 @@ else
dotnet="../0install.sh run --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml"
fi
-# Build docs
+echo "Build docs"
+rm -rf api/
$dotnet tool restore
15
$dotnet docfx --logLevel=warning --warningsAsErrors docfx.json
0 commit comments