Skip to content

Commit 85d0c32

Browse files
committed
Bump version to 7.5.4
1 parent 628fd1f commit 85d0c32

File tree

4 files changed

+23
-20
lines changed

4 files changed

+23
-20
lines changed

release/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 7.5.4 - 07.05.2023
2+
3+
* Fix debug settings to not override coreclr from omnisharp.
4+
* Update Ionide TextMate grammar to pick up some fixes (Thanks @jkillingsworth!)
5+
16
### 7.5.3 - 21.04.2023
27

38
* Update to FSAC 0.59.6 to get all the delightful new features and fixes. You can check the release notes for [0.59.6](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.59.5).

release/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ The library is available under [MIT license](https://github.com/ionide/ionide-vs
9696

9797
## Our Sponsors
9898

99-
Ionide couldn't be created without the support of [Lambda Factory](https://lambdafactory.io). If your company would be interested in supporting development of Ionide, or acquiring commercial support send us an email - [email protected].
99+
Ionide couldn't be created without the support of [Lambda Factory](https://lambdafactory.pl). If your company would be interested in supporting development of Ionide, or acquiring commercial support send us an email - [email protected].
100100

101101
You can also support Ionide development on [Open Collective](https://opencollective.com/ionide).
102102

103103
### Partners
104104

105105
<div align="center">
106106

107-
<a href="https://lambdafactory.io"><img src="https://cdn-images-1.medium.com/max/332/1*[email protected]" alt="drawing" width="100"/></a>
107+
<a href="https://lambdafactory.pl"><img src="https://cdn-images-1.medium.com/max/332/1*[email protected]" alt="drawing" width="100"/></a>
108108

109109
</div>
110110

release/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1658,5 +1658,5 @@
16581658
"type": "git",
16591659
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
16601660
},
1661-
"version": "7.5.3"
1661+
"version": "7.5.4"
16621662
}

src/Components/Debugger.fs

+15-17
Original file line numberDiff line numberDiff line change
@@ -344,23 +344,21 @@ module Debugger =
344344
let tasks =
345345
projects
346346
|> List.collect (fun (p: Project) ->
347-
[
348-
let projectFile = node.path.basename p.Project
349-
350-
let buildTaskForProject =
351-
msbuildTasks
352-
|> Seq.tryFind (fun t ->
353-
t.group = Some vscode.TaskGroup.Build && t.name = projectFile)
354-
// emit configurations for any launchsettings for this project
355-
match readSettingsForProject p with
356-
| Some launchSettings ->
357-
yield! configsForProject (p, launchSettings, buildTaskForProject)
358-
| None -> ()
359-
// emit a default configuration for this project if it is an executable
360-
match defaultConfigForProject (p, buildTaskForProject) with
361-
| Some p -> yield p
362-
| None -> ()
363-
])
347+
[ let projectFile = node.path.basename p.Project
348+
349+
let buildTaskForProject =
350+
msbuildTasks
351+
|> Seq.tryFind (fun t ->
352+
t.group = Some vscode.TaskGroup.Build && t.name = projectFile)
353+
// emit configurations for any launchsettings for this project
354+
match readSettingsForProject p with
355+
| Some launchSettings ->
356+
yield! configsForProject (p, launchSettings, buildTaskForProject)
357+
| None -> ()
358+
// emit a default configuration for this project if it is an executable
359+
match defaultConfigForProject (p, buildTaskForProject) with
360+
| Some p -> yield p
361+
| None -> () ])
364362

365363
return ResizeArray tasks
366364
}

0 commit comments

Comments
 (0)