We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 671a174 + f75380a commit beae252Copy full SHA for beae252
src/razor/src/razorLanguageServerClient.ts
@@ -268,10 +268,8 @@ export class RazorLanguageServerClient implements vscode.Disposable {
268
args.push('--SingleServerCompletionSupport');
269
args.push('true');
270
271
- if (options.forceRuntimeCodeGeneration) {
272
- args.push('--ForceRuntimeCodeGeneration');
273
- args.push('true');
274
- }
+ args.push('--ForceRuntimeCodeGeneration');
+ args.push(options.forceRuntimeCodeGeneration ? 'true' : 'false');
275
276
if (options.useNewFormattingEngine) {
277
args.push('--UseNewFormattingEngine');
0 commit comments