1 implementation of ILibraryService
Microsoft.VisualStudio.LanguageServices (1)
Library\AbstractLibraryService.cs (1)
12
internal abstract class AbstractLibraryService :
ILibraryService
9 references to ILibraryService
Microsoft.VisualStudio.LanguageServices (8)
Library\ClassView\AbstractSyncClassViewCommandHandler.cs (2)
57
var
libraryService = document.GetLanguageService<
ILibraryService
>();
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (4)
34
internal
ILibraryService
LibraryService => _libraryService.Value;
36
private readonly Lazy<
ILibraryService
> _libraryService;
59
_libraryService = new Lazy<
ILibraryService
>(() => Workspace.Services.GetLanguageServices(_languageName).GetService<
ILibraryService
>());
Workspace\VisualStudioSymbolNavigationService.cs (2)
97
var
libraryService = project.Services.GetService<
ILibraryService
>();
Microsoft.VisualStudio.LanguageServices.CSharp (1)
ObjectBrowser\CSharpLibraryService.cs (1)
16
[ExportLanguageService(typeof(
ILibraryService
), LanguageNames.CSharp), Shared]