File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
using OmniSharp . Extensions . JsonRpc ;
2
-
2
+ using OmniSharp . Extensions . LanguageServer . Protocol . Models ;
3
3
// ReSharper disable CheckNamespace
4
4
5
5
namespace OmniSharp . Extensions . LanguageServer . Protocol
@@ -11,5 +11,5 @@ public static partial class GeneralNames
11
11
}
12
12
13
13
[ Serial , Method ( Initialized ) ]
14
- public interface IInitializedHandler : INotificationHandler { }
14
+ public interface IInitializedHandler : INotificationHandler < InitializedParams > { }
15
15
}
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using Newtonsoft . Json ;
3
+ using Newtonsoft . Json . Serialization ;
4
+ using OmniSharp . Extensions . LanguageServer . Protocol . Client . Capabilities ;
5
+ using OmniSharp . Extensions . LanguageServer . Protocol . Serialization ;
6
+
7
+ namespace OmniSharp . Extensions . LanguageServer . Protocol . Models
8
+ {
9
+ public class InitializedParams
10
+ {
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments