2 implementations of ICodeLensReferencesService
Microsoft.CodeAnalysis.Features (1)
CodeLens\CodeLensReferencesService.cs (1)
22internal sealed class CodeLensReferencesService : ICodeLensReferencesService
Microsoft.VisualStudio.LanguageServices (1)
CodeLens\RemoteCodeLensReferencesService.cs (1)
24internal sealed class RemoteCodeLensReferencesService : ICodeLensReferencesService
13 references to ICodeLensReferencesService
Microsoft.CodeAnalysis.Features (2)
CodeLens\CodeLensReferencesServiceFactory.cs (2)
12[ExportWorkspaceServiceFactory(typeof(ICodeLensReferencesService)), Shared] 15public static readonly ICodeLensReferencesService Instance = new CodeLensReferencesService();
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\CodeLens\CodeLensResolveHandler.cs (2)
66var codeLensReferencesService = document.Project.Solution.Services.GetRequiredService<ICodeLensReferencesService>();
Microsoft.VisualStudio.LanguageServices (9)
CodeLens\CodeLensCallbackListener.cs (8)
65var service = _workspace.Services.GetRequiredService<ICodeLensReferencesService>(); 99var service = _workspace.Services.GetRequiredService<ICodeLensReferencesService>(); 131var service = _workspace.Services.GetRequiredService<ICodeLensReferencesService>(); 167var service = _workspace.Services.GetRequiredService<ICodeLensReferencesService>();
CodeLens\RemoteCodeLensReferencesService.cs (1)
23[ExportWorkspaceService(typeof(ICodeLensReferencesService), layer: ServiceLayer.Host), Shared]