File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1+ ### 7.1.0 - 19.08.2022
2+ * Update FSAC to 0.56.12 for [ these changes] ( https://github.com/fsharp/FsAutoComplete/releases/tag/v0.56.2 )
3+ * Removed unused FAKE configuration settings and handler code
4+ * Massively improve error messages when dotnet isn't found (thanks @MangelMaxime !)
5+ * Improve FSI management (thanks @MangelMaxime !)
6+ * Fix solution explorer icons for solutions and projects (thanks @MangelMaxime !)
7+ * Fix logic in 'add file to project' (thanks @MangelMaxime !)
8+ * Fix hangs on double-backticked identifiers (thanks @MangelMaxime !)
9+
110### 7.0.0 - 23.07.2022
211
312* Remove custom inlay hints implementation
Original file line number Diff line number Diff line change 15781578 "type" : " git" ,
15791579 "url" : " https://github.com/ionide/ionide-vscode-fsharp.git"
15801580 },
1581- "version" : " 7.0 .0"
1582- }
1581+ "version" : " 7.1 .0"
1582+ }
Original file line number Diff line number Diff line change @@ -437,13 +437,14 @@ Consider:
437437 cl.sendRequest ( " fsproj/addFile" , req)
438438 |> Promise.map ( fun ( res : Types.PlainNotification ) -> ())
439439
440- let fsprojRemoveFile ( fsproj : string ) ( file : string ) =
440+ let fsprojRemoveFile ( fsproj : string ) ( file : string ) =
441441 match client with
442442 | None -> Promise.empty
443443 | Some cl ->
444444 let req : FsProj.DotnetFileRequest =
445445 { FsProj = fsproj
446446 FileVirtualPath = file }
447+
447448 cl.sendRequest ( " fsproj/removeFile" , req)
448449 |> Promise.map ( fun ( res : Types.PlainNotification ) -> ())
449450
You can’t perform that action at this time.
0 commit comments