Skip to content

Commit

Permalink
Merge pull request #1872 from kblohm/newDocFxModule
Browse files Browse the repository at this point in the history
WIP: new DocFxModule for Fake5
  • Loading branch information
matthid authored Apr 22, 2018
2 parents 44d0b6d + 7258d1d commit 775a33c
Show file tree
Hide file tree
Showing 8 changed files with 908 additions and 85 deletions.
181 changes: 98 additions & 83 deletions Fake.sln

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ let dotnetAssemblyInfos =
"Fake.Tracing.NAntXml", "NAntXml"
"Fake.Windows.Chocolatey", "Running and packaging with Chocolatey"
"Fake.Testing.SonarQube", "Analyzing your project with SonarQube"
"Fake.DotNet.Testing.OpenCover", "Code coverage with OpenCover" ]
"Fake.DotNet.Testing.OpenCover", "Code coverage with OpenCover"
"Fake.Documentation.DocFx", "Documentation with DocFx" ]

let assemblyInfos =
[ legacyDir </> "FAKE/AssemblyInfo.fs",
Expand Down
17 changes: 17 additions & 0 deletions src/app/Fake.Documentation.DocFx/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Auto-Generated by FAKE; do not edit
namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("FAKE - F# Make Documentation with DocFx")>]
[<assembly: AssemblyProductAttribute("FAKE - F# Make")>]
[<assembly: AssemblyVersionAttribute("5.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.0.0-rc005")>]
[<assembly: AssemblyFileVersionAttribute("5.0.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FAKE - F# Make Documentation with DocFx"
let [<Literal>] AssemblyProduct = "FAKE - F# Make"
let [<Literal>] AssemblyVersion = "5.0.0"
let [<Literal>] AssemblyInformationalVersion = "5.0.0-rc005"
let [<Literal>] AssemblyFileVersion = "5.0.0"
Loading

0 comments on commit 775a33c

Please sign in to comment.