Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,16 @@ Target.create "NuGet" (fun _ ->
Target.create "GenerateDocs" (fun _ ->
Shell.cleanDir ".fsdocs"

DotNet.exec
id
"fsdocs"
("build --properties Configuration=Release --strict --eval --clean --parameters fsdocs-package-version "
+ release.NugetVersion)
|> ignore)
let result =
DotNet.exec
id
"fsdocs"
("build --properties Configuration=Release --strict --eval --clean --parameters fsdocs-package-version "
+ release.NugetVersion)

if not result.OK then
printfn "Errors while generating docs: %A" result.Messages
failwith "Failed to generate docs")

// --------------------------------------------------------------------------------------
// Help
Expand Down
2 changes: 1 addition & 1 deletion docs/library/HtmlProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ type NugetStats =
HtmlProvider<"https://www.nuget.org/packages/FSharp.Data">

// load the live package stats for FSharp.Data
let rawStats = NugetStats().Tables.Table3
let rawStats = NugetStats().Tables.Table4

// helper function to analyze version numbers from nuget
let getMinorVersion (v:string) =
Expand Down