Skip to content

Commit

Permalink
Build no longer creates AssemblyInfo.fs for the elmish submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin committed Jun 23, 2017
1 parent 8ad5a7f commit 044b35f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Target "AssemblyInfo" (fun _ ->
(getAssemblyInfoAttributes projectName)
)

!! "src/**/*.??proj"
!! "src/*/*.??proj"
|> Seq.map getProjectDetails
|> Seq.iter (fun (projFileName, projectName, folderName, attributes) ->
match projFileName with
Expand Down
8 changes: 4 additions & 4 deletions src/Elmish.Counter/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Elmish.Counter")>]
[<assembly: AssemblyProductAttribute("Elmish.WPF")>]
[<assembly: AssemblyDescriptionAttribute("F# bindings for using elmish in WPF")>]
[<assembly: AssemblyVersionAttribute("0.9.0")>]
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
[<assembly: AssemblyVersionAttribute("1.0.0")>]
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Elmish.Counter"
let [<Literal>] AssemblyProduct = "Elmish.WPF"
let [<Literal>] AssemblyDescription = "F# bindings for using elmish in WPF"
let [<Literal>] AssemblyVersion = "0.9.0"
let [<Literal>] AssemblyFileVersion = "0.9.0"
let [<Literal>] AssemblyVersion = "1.0.0"
let [<Literal>] AssemblyFileVersion = "1.0.0"
8 changes: 4 additions & 4 deletions src/Elmish.WPF/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Elmish.WPF")>]
[<assembly: AssemblyProductAttribute("Elmish.WPF")>]
[<assembly: AssemblyDescriptionAttribute("F# bindings for using elmish in WPF")>]
[<assembly: AssemblyVersionAttribute("0.9.0")>]
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
[<assembly: AssemblyVersionAttribute("1.0.0")>]
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Elmish.WPF"
let [<Literal>] AssemblyProduct = "Elmish.WPF"
let [<Literal>] AssemblyDescription = "F# bindings for using elmish in WPF"
let [<Literal>] AssemblyVersion = "0.9.0"
let [<Literal>] AssemblyFileVersion = "0.9.0"
let [<Literal>] AssemblyVersion = "1.0.0"
let [<Literal>] AssemblyFileVersion = "1.0.0"

0 comments on commit 044b35f

Please sign in to comment.