Skip to content

Commit eabd8a0

Browse files
author
Andrew Hall
committed
Always set fuse
1 parent 14ec636 commit eabd8a0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/razor/src/razorLanguageServerClient.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,8 @@ export class RazorLanguageServerClient implements vscode.Disposable {
268268
args.push('--SingleServerCompletionSupport');
269269
args.push('true');
270270

271-
if (options.forceRuntimeCodeGeneration) {
272-
args.push('--ForceRuntimeCodeGeneration');
273-
args.push('true');
274-
}
271+
args.push('--ForceRuntimeCodeGeneration');
272+
args.push(options.forceRuntimeCodeGeneration ? 'true' : 'false');
275273

276274
if (options.useNewFormattingEngine) {
277275
args.push('--UseNewFormattingEngine');

0 commit comments

Comments
 (0)