Skip to content

Commit

Permalink
fix net8.0 build
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed May 17, 2024
1 parent fc844e5 commit 13eaed0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ let initTargets () =


Target.create "CopyFSACNetcore" (fun _ ->
let tfms = [ "net6.0"; "net7.0" ]
let tfms = [ "net6.0"; "net7.0"; "net8.0" ]

for tfm in tfms do
let fsacBinNetcore = $"packages/fsac/fsautocomplete/tools/{tfm}/any"
Expand Down
4 changes: 4 additions & 0 deletions release/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 7.20.1 - 17.05.2024

* Fixed: The .NET 8 build of FsAutoComplete wasn't being included in the build. Now it is!

### 7.20.0 - 15.05.2024

* ADDED: New flag to enable the F# Compiler's Transparent Compiler mode. Set `FSharp.fcs.transparentCompiler.enabled` to `true` to opt into the experimental analysis mode. This mode should be faster than the previous APIs, but may be unstable and may use more memory. As a result, it is still in an experimental mode and must be opted-in to.
Expand Down

0 comments on commit 13eaed0

Please sign in to comment.