Skip to content

Commit

Permalink
namespaces from all assemblies are rendered into one reference/index.…
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-tihon committed Jul 8, 2014
1 parent 9c4c34d commit b8e4f1b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docs/tools/generate.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,15 @@ let copyFiles () =
// Build API reference from XML comments
let buildReference () =
CleanDir (output @@ "reference")
for lib in referenceBinaries do
MetadataFormat.Generate
( bin @@ lib, output @@ "reference", layoutRoots,
parameters = ("root", root)::info,
sourceRepo = githubLink @@ "tree/master",
sourceFolder = __SOURCE_DIRECTORY__ @@ ".." @@ "..",
publicOnly = true )
let binaries =
referenceBinaries
|> List.map (fun lib-> bin @@ lib)
MetadataFormat.Generate
( binaries, output @@ "reference", layoutRoots,
parameters = ("root", root)::info,
sourceRepo = githubLink @@ "tree/master",
sourceFolder = __SOURCE_DIRECTORY__ @@ ".." @@ "..",
publicOnly = true )

// Build documentation from `fsx` and `md` files in `docs/content`
let buildDocumentation () =
Expand Down

0 comments on commit b8e4f1b

Please sign in to comment.