From c1648ee417f1a7edbf145468d1349537a90a85ad Mon Sep 17 00:00:00 2001 From: Roland Grunberg Date: Thu, 8 May 2025 16:50:14 -0400 Subject: [PATCH] "Rebuild Projects" command should be done incrementally. Signed-off-by: Roland Grunberg --- src/standardLanguageClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/standardLanguageClient.ts b/src/standardLanguageClient.ts index 9db7432c6..bb0ca1335 100644 --- a/src/standardLanguageClient.ts +++ b/src/standardLanguageClient.ts @@ -494,7 +494,7 @@ export class StandardLanguageClient { })), // we can consider expose 'isFullBuild' according to users' feedback, // currently set it to true by default. - isFullBuild: isFullBuild === undefined ? true : isFullBuild, + isFullBuild: isFullBuild === undefined ? false : isFullBuild, }; return window.withProgress({ location: ProgressLocation.Window }, async p => {