1 implementation of ILibraryService
Microsoft.VisualStudio.LanguageServices (1)
Library\AbstractLibraryService.cs (1)
14
internal abstract class AbstractLibraryService :
ILibraryService
7 references to ILibraryService
Microsoft.VisualStudio.LanguageServices (7)
Library\ClassView\AbstractSyncClassViewCommandHandler.cs (1)
64
var libraryService = document.GetLanguageService<
ILibraryService
>();
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (4)
34
internal
ILibraryService
LibraryService => _libraryService.Value;
36
private readonly Lazy<
ILibraryService
> _libraryService;
58
_libraryService = new Lazy<
ILibraryService
>(() => Workspace.Services.GetLanguageServices(_languageName).GetService<
ILibraryService
>());
Workspace\VisualStudioSymbolNavigationService.cs (2)
100
var
libraryService = project.Services.GetService<
ILibraryService
>();