11 references to RazorLspServer
Microsoft.CodeAnalysis.EditorFeatures (2)
LanguageServer\RazorInProcLanguageClient.cs (1)
53public override WellKnownLspServerKinds ServerKind => WellKnownLspServerKinds.RazorLspServer;
LanguageServer\RazorInProcLanguageClientCapabilitiesProvider.cs (1)
16[ExportCSharpVisualBasicStatelessLspService(typeof(ICapabilitiesProvider), WellKnownLspServerKinds.RazorLspServer), Shared]
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (2)
Testing\RazorTestCapabilitiesProvider.cs (1)
15[ExportCSharpVisualBasicStatelessLspService(typeof(ICapabilitiesProvider), WellKnownLspServerKinds.RazorLspServer), Shared]
Testing\RazorTestLanguageServerFactory.cs (1)
29return CreateLanguageServerCore(jsonRpc, options, razorCapabilitiesProvider, hostServices, WellKnownLspServerKinds.RazorLspServer);
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Diagnostics\AbstractWorkspacePullDiagnosticsHandler.cs (1)
64if (context.ServerKind == WellKnownLspServerKinds.RazorLspServer)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
59var isRazorRequest = context.ServerKind == WellKnownLspServerKinds.RazorLspServer;
WellKnownLspServerKinds.cs (3)
47WellKnownLspServerKinds.RazorLspServer => "Razor C# Language Server Client", 63WellKnownLspServerKinds.RazorLspServer => "RazorInProcLanguageClient", 83WellKnownLspServerKinds.RazorLspServer => ProtocolConstants.RoslynLspLanguagesContract,
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Diagnostics\PullDiagnosticTests.cs (1)
618GetInitializationOptions(BackgroundAnalysisScope.OpenFiles, CompilerDiagnosticsScope.OpenFiles, useVSDiagnostics, WellKnownLspServerKinds.RazorLspServer));
OnAutoInsert\OnAutoInsertTests.cs (1)
375""", mutatingLspWorkspace, serverKind: WellKnownLspServerKinds.RazorLspServer, useVSCapabilities: useVSCapabilities);