File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -300,14 +300,14 @@ export class RoslynLanguageServer {
300
300
await this . sendOpenSolutionNotification ( ) ;
301
301
}
302
302
303
- private async sendOpenSolutionNotification ( ) {
303
+ private async sendOpenSolutionNotification ( ) : Promise < void > {
304
304
if ( this . _solutionFile !== undefined && this . _languageClient !== undefined && this . _languageClient . isRunning ( ) ) {
305
305
let protocolUri = this . _languageClient . clientOptions . uriConverters ! . code2Protocol ( this . _solutionFile ) ;
306
306
await this . _languageClient . sendNotification ( "solution/open" , new OpenSolutionParams ( protocolUri ) ) ;
307
307
}
308
308
}
309
309
310
- private async openDefaultSolution ( ) {
310
+ private async openDefaultSolution ( ) : Promise < void > {
311
311
const options = this . optionProvider . GetLatestOptions ( ) ;
312
312
313
313
// If Dev Kit isn't installed, then we are responsible for picking the solution to open, assuming the user hasn't explicitly
@@ -325,7 +325,7 @@ export class RoslynLanguageServer {
325
325
}
326
326
}
327
327
328
- private async sendOrSubscribeForServiceBrokerConnection ( ) {
328
+ private async sendOrSubscribeForServiceBrokerConnection ( ) : Promise < void > {
329
329
const csharpDevKitExtension = vscode . extensions . getExtension < CSharpDevKitExports > ( csharpDevkitExtensionId ) ;
330
330
if ( csharpDevKitExtension ) {
331
331
const exports = await csharpDevKitExtension . activate ( ) ;
You can’t perform that action at this time.
0 commit comments