You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ Bug Fixes:
87
87
- Fix issue with hover provider not checking for undefined. [#4812](https://github.com/microsoft/vscode-cmake-tools/issues/4812)
88
88
- Fix bug in which CTest is unable to run large amount of tests in parallel due to regex exceeding command line length limits [#4829](https://github.com/microsoft/vscode-cmake-tools/issues/4829)[@theuke](https://github.com/theuke)
89
89
- Fix malformed devcontainer.json used for working with GitHub Codespaces and similar environments [#4588](https://github.com/microsoft/vscode-cmake-tools/pull/4588)[@kaladron](https://github.com/kaladron)
90
+
- Fix hang in `buildWithResult` tool when there isn't a configure preset selected. [#4857](https://github.com/microsoft/vscode-cmake-tools/issues/4857)
Copy file name to clipboardExpand all lines: src/cmakeProject.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1994,9 +1994,9 @@ export class CMakeProject {
1994
1994
}
1995
1995
}
1996
1996
}elseif(!this.configurePreset){
1997
-
awaitvscode.window.showErrorMessage(localize('cannot.configure.no.config.preset','Cannot configure: No configure preset is active for this CMake project'));
1997
+
voidvscode.window.showErrorMessage(localize('cannot.configure.no.config.preset','Cannot configure: No configure preset is active for this CMake project'));
0 commit comments