Skip to content

Commit

Permalink
Fix documentation generation
Browse files Browse the repository at this point in the history
  • Loading branch information
panesofglass committed May 22, 2020
1 parent 2c8386f commit 98280d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ open System.Threading

// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitHome = "git@github.com:fsprojects"
let gitHome = "https://github.com/fsprojects"
// The name of the project on GitHub
let gitName = "FSharp.Control.Reactive"

Expand Down Expand Up @@ -71,7 +71,7 @@ Target.create "GenerateDocs" (fun _ ->
"project-name", "FSharp.Control.Reactive"
"project-author", "Ryan Riley, Steffen Forkmann, and Jared Hester"
"project-summary", "A F#-friendly wrapper for the Reactive Extensions."
"project-github", "http://github.com/fsprojects/FSharp.Reactive"
"project-github", "https://github.com/fsprojects/FSharp.Control.Reactive"
"project-nuget", "https://www.nuget.org/packages/FSharp.Control.Reactive" ]

Shell.copyDir output files FileFilter.allFiles
Expand Down Expand Up @@ -147,7 +147,10 @@ Target.create "ReleaseDocs" (fun _ ->
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override

Target.create "All" ignore
Target.create "All" (fun _ ->
Target.listAvailable()
)

open Fake.Core.TargetOperators

"CleanDocs"
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<PackageIcon>logo.png</PackageIcon>
<PackageTags>F#;FSharp;Reactive Extensions;Rx</PackageTags>
<RepositoryUrl>https://github.com/fsprojects/FSharp.Control.Reactive</RepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand Down

0 comments on commit 98280d6

Please sign in to comment.