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 0832add + 361f4f7 commit 6288515Copy full SHA for 6288515
src/Server/ILanguageServer.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Collections.Generic;
3
using System.Threading.Tasks;
4
+using Microsoft.Extensions.DependencyInjection;
5
using OmniSharp.Extensions.JsonRpc;
6
using OmniSharp.Extensions.LanguageServer.Protocol;
7
using OmniSharp.Extensions.LanguageServer.Protocol.Models;
@@ -18,6 +19,7 @@ public interface ILanguageServer : OmniSharp.Extensions.LanguageServer.Protocol.
18
19
20
InitializeParams ClientSettings { get; }
21
InitializeResult ServerSettings { get; }
22
+ IServiceProvider Services { get; }
23
24
IObservable<bool> Shutdown { get; }
25
IObservable<int> Exit { get; }
0 commit comments