Skip to content

Commit e4aeb87

Browse files
committed
"Rebuild Projects" command should be done incrementally.
Signed-off-by: Roland Grunberg <[email protected]>
1 parent 99c1257 commit e4aeb87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/standardLanguageClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ export class StandardLanguageClient {
494494
})),
495495
// we can consider expose 'isFullBuild' according to users' feedback,
496496
// currently set it to true by default.
497-
isFullBuild: isFullBuild === undefined ? true : isFullBuild,
497+
isFullBuild: isFullBuild === undefined ? false : isFullBuild,
498498
};
499499

500500
return window.withProgress({ location: ProgressLocation.Window }, async p => {

0 commit comments

Comments
 (0)