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