File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ open System.Reflection
44[<assembly: AssemblyTitleAttribute( " FSharp.AutoComplete" ) >]
55[<assembly: AssemblyProductAttribute( " FSharp.AutoComplete" ) >]
66[<assembly: AssemblyDescriptionAttribute( " A command line tool for interfacing with FSharp.Compiler.Service over a pipe." ) >]
7- [<assembly: AssemblyVersionAttribute( " 0.18.0 " ) >]
8- [<assembly: AssemblyFileVersionAttribute( " 0.18.0 " ) >]
7+ [<assembly: AssemblyVersionAttribute( " 0.18.1 " ) >]
8+ [<assembly: AssemblyFileVersionAttribute( " 0.18.1 " ) >]
99do ()
1010
1111module internal AssemblyVersionInformation =
12- let [<Literal>] Version = " 0.18.0 "
12+ let [<Literal>] Version = " 0.18.1 "
Original file line number Diff line number Diff line change 1+ #### 0.18.1 - 03.09.2015
2+
3+ * Prevent test assemblies from being included in release archives by
4+ avoiding forcing the output directory.
5+
16#### 0.18.0 - 03.06.2015
27
38* Adjust for 1-based column indexing - https://github.com/fsharp/FSharp.AutoComplete/pull/13
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ let releaseArchive = "fsautocomplete.zip"
2929let testAssemblies = " **/bin/*/*Tests*.dll"
3030
3131Target " BuildDebug" ( fun _ ->
32- MSBuildDebug buildDir " Build" [ " ./FSharp.AutoComplete.sln" ]
32+ MSBuildDebug " " " Build" [ " ./FSharp.AutoComplete.sln" ]
3333 |> Log " Build-Output: "
3434)
3535
3636Target " BuildRelease" ( fun _ ->
37- MSBuildRelease buildReleaseDir " Build" [ " ./FSharp.AutoComplete.sln" ]
37+ MSBuildRelease " " " Build" [ " ./FSharp.AutoComplete.sln" ]
3838 |> Log " Build-Output: "
3939)
4040
You can’t perform that action at this time.
0 commit comments