12 references to RazorLspServer
Microsoft.CodeAnalysis.EditorFeatures (1)
LanguageServer\RazorInProcLanguageClient.cs (1)
99public override WellKnownLspServerKinds ServerKind => WellKnownLspServerKinds.RazorLspServer;
Microsoft.CodeAnalysis.ExternalAccess.Razor (1)
RazorLanguageServerFactoryWrapper.cs (1)
42var languageServer = _languageServerFactory.Create(jsonRpc, capabilitiesProvider, WellKnownLspServerKinds.RazorLspServer, NoOpLspLogger.Instance, hostServices);
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
262WellKnownLspServerKinds.RazorLspServer => InternalDiagnosticsOptionsStorage.RazorDiagnosticMode,
Handler\Diagnostics\WorkspacePullDiagnosticHandler.cs (1)
71if (context.ServerKind == WellKnownLspServerKinds.RazorLspServer)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
82if (request.Character == "\n" && context.ServerKind == WellKnownLspServerKinds.RazorLspServer)
WellKnownLspServerKinds.cs (3)
55WellKnownLspServerKinds.RazorLspServer => "Razor C# Language Server Client", 73WellKnownLspServerKinds.RazorLspServer => "RazorInProcLanguageClient", 99WellKnownLspServerKinds.RazorLspServer => ProtocolConstants.RoslynLspLanguagesContract,
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
Diagnostics\PullDiagnosticTests.cs (1)
623GetInitializationOptions(BackgroundAnalysisScope.OpenFiles, useVSDiagnostics, DiagnosticMode.SolutionCrawlerPush, WellKnownLspServerKinds.RazorLspServer));
OnAutoInsert\OnAutoInsertTests.cs (3)
277await VerifyMarkupAndExpected("\n", markup, expected, serverKind: WellKnownLspServerKinds.RazorLspServer); 299await VerifyMarkupAndExpected("\n", markup, expected, insertSpaces: false, tabSize: 4, serverKind: WellKnownLspServerKinds.RazorLspServer); 325await VerifyMarkupAndExpected("\n", markup, expected, serverKind: WellKnownLspServerKinds.RazorLspServer);