Skip to content

Commit beae252

Browse files
authored
[prerelease] Always set fuse (#8023)
2 parents 671a174 + f75380a commit beae252

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)