File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,10 @@ import {
22
22
RequestType0 ,
23
23
PartialResultParams ,
24
24
ProtocolRequestType ,
25
- MessageType ,
26
25
SocketMessageWriter ,
27
26
SocketMessageReader ,
28
27
MessageTransports ,
29
- RAL
28
+ RAL ,
30
29
} from 'vscode-languageclient/node' ;
31
30
import { PlatformInformation } from '../shared/platform' ;
32
31
import { readConfigurations } from './configurationMiddleware' ;
@@ -59,6 +58,10 @@ import { registerOnAutoInsert } from './onAutoInsert';
59
58
let _channel : vscode . OutputChannel ;
60
59
let _traceChannel : vscode . OutputChannel ;
61
60
61
+ // Flag indicating if C# Devkit was installed the last time we activated.
62
+ // Used to determine if we need to restart the server on extension changes.
63
+ let _wasActivatedWithCSharpDevkit : boolean | undefined ;
64
+
62
65
interface TransmittedInformation {
63
66
Key : string ;
64
67
Value : string ;
@@ -68,7 +71,7 @@ export class RoslynLanguageServer {
68
71
// These are notifications we will get from the LSP server and will forward to the Razor extension.
69
72
private static readonly provideRazorDynamicFileInfoMethodName : string = 'razor/provideDynamicFileInfo' ;
70
73
private static readonly removeRazorDynamicFileInfoMethodName : string = 'razor/removeDynamicFileInfo' ;
71
-
74
+
72
75
/**
73
76
* The encoding to use when writing to and from the stream.
74
77
*/
You can’t perform that action at this time.
0 commit comments