From f08ae523e494409776462f31e771af7c2bf559c6 Mon Sep 17 00:00:00 2001 From: nojaf Date: Fri, 30 Dec 2022 10:19:36 +0100 Subject: [PATCH] Generate API docs for non public API. --- build.fsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index 311ba8355d..2481762066 100644 --- a/build.fsx +++ b/build.fsx @@ -76,7 +76,7 @@ pipeline "Build" { whenNot { platformOSX } run "dotnet fsi ./docs/.style/style.fsx" run - $"dotnet fsdocs build --clean --properties Configuration=Release --fscoptions \" -r:{semanticVersioning}\" --eval --strict" + $"dotnet fsdocs build --clean --properties Configuration=Release --fscoptions \" -r:{semanticVersioning}\" --eval --strict --nonpublic" } stage "Push" { whenCmdArg "--push" @@ -167,7 +167,8 @@ pipeline "Docs" { stage "Watch" { paralle run "dotnet fsi ./docs/.style/style.fsx --watch" - run $"dotnet fsdocs watch --properties Configuration=Release --fscoptions \" -r:{semanticVersioning}\" --eval" + run + $"dotnet fsdocs watch --properties Configuration=Release --fscoptions \" -r:{semanticVersioning}\" --eval --nonpublic" } runIfOnlySpecified true }