${buildKit} is not updated after a Kit switch (#2335)

* ${buildKit} is not updated after a Kit switch

* Update changelog

Co-authored-by: Andreea Isac <48239328+andreeis@users.noreply.github.com>
This commit is contained in:
Bob Brown 2022-01-31 17:35:34 -08:00 коммит произвёл GitHub
Родитель 736ba04b62
Коммит dd1f2ca158
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1,5 +1,9 @@
# What's New?
## 1.10.0
Bug Fixes:
- ${buildKit} is not updated after a Kit switch. [#2335](https://github.com/microsoft/vscode-cmake-tools/issues/2335)
## 1.9.2
Bug fixes:
- Fix infinite recursion into symlinks. [#2257](https://github.com/microsoft/vscode-cmake-tools/issues/2257)

Просмотреть файл

@ -515,6 +515,7 @@ export abstract class CMakeDriver implements vscode.Disposable {
const needs_clean = this.binaryDir === newBinaryDir && kitChangeNeedsClean(kit, this._kit);
await this.doSetKit(needs_clean, async () => {
await this._setKit(kit, preferredGenerators);
await this._refreshExpansions();
});
}