File tree Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 4
4
- Debug from .csproj and .sln [ #5876 ] ( https://github.com/dotnet/vscode-csharp/issues/5876 )
5
5
6
6
# 2.69.x
7
+ * Bump razor to 9.0.0-preview.25156.2 (PR: [ #8047 ] ( https://github.com/dotnet/vscode-csharp/pull/8047 ) )
8
+ * Enable FUSE by default
9
+ * Improve solution load performance (#11591 ) (PR: [ #11591 ] ( https://github.com/dotnet/razor/pull/11591 ) )
10
+ * Make logging fall into the pit of success (#11581 ) (PR: [ #11581 ] ( https://github.com/dotnet/razor/pull/11581 ) )
7
11
* Bump xamlTools to 17.14.35904.287 (PR: [ #8042 ] ( https://github.com/dotnet/vscode-csharp/pull/8042 ) )
8
12
9
13
# 2.68.x
Original file line number Diff line number Diff line change 39
39
"defaults" : {
40
40
"roslyn" : " 4.14.0-2.25120.5" ,
41
41
"omniSharp" : " 1.39.12" ,
42
- "razor" : " 9.0.0-preview.25125.9 " ,
42
+ "razor" : " 9.0.0-preview.25156.2 " ,
43
43
"razorOmnisharp" : " 7.0.0-preview.23363.1" ,
44
44
"xamlTools" : " 17.14.35904.287"
45
45
},
1519
1519
"razor.languageServer.forceRuntimeCodeGeneration" : {
1520
1520
"type" : " boolean" ,
1521
1521
"scope" : " machine-overridable" ,
1522
- "default" : null ,
1522
+ "default" : true ,
1523
1523
"description" : " %configuration.razor.languageServer.forceRuntimeCodeGeneration%" ,
1524
1524
"order" : 90
1525
1525
},
Original file line number Diff line number Diff line change @@ -23,17 +23,7 @@ export function resolveRazorLanguageServerOptions(
23
23
const usingOmniSharp =
24
24
! getCSharpDevKit ( ) && vscodeApi . workspace . getConfiguration ( ) . get < boolean > ( 'dotnet.server.useOmnisharp' ) ;
25
25
26
- const hotReload = vscodeApi . workspace . getConfiguration ( 'csharp.experimental.debug' ) . get < boolean > ( 'hotReload' ) ;
27
-
28
- let forceRuntimeCodeGeneration = serverConfig . get < boolean | null > ( 'forceRuntimeCodeGeneration' ) ;
29
-
30
- if ( forceRuntimeCodeGeneration === null && hotReload ) {
31
- logger . logMessage (
32
- 'Hot Reload is enabled so treating "razor.languageServer.forceRuntimeCodeGeneration" as true. To override this set "razor.languageServer.forceRuntimeCodeGeneration" to true or false.'
33
- ) ;
34
-
35
- forceRuntimeCodeGeneration = hotReload ;
36
- }
26
+ const forceRuntimeCodeGeneration = serverConfig . get < boolean > ( 'forceRuntimeCodeGeneration' ) ;
37
27
38
28
const suppressErrorToasts = serverConfig . get < boolean > ( 'suppressLspErrorToasts' ) ;
39
29
const useNewFormattingEngine = serverConfig . get < boolean > ( 'useNewFormattingEngine' ) ;
You can’t perform that action at this time.
0 commit comments