3 implementations of IExtractInterfaceOptionsService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
ExtractInterface\TestExtractInterfaceOptions.cs (1)
24internal class TestExtractInterfaceOptionsService : IExtractInterfaceOptionsService
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
Internal\ExtractInterface\OmniSharpExtractInterfaceOptionsService.cs (1)
26internal class OmniSharpExtractInterfaceOptionsService : IExtractInterfaceOptionsService
Microsoft.VisualStudio.LanguageServices (1)
ExtractInterface\VisualStudioExtractInterfaceOptionsService.cs (1)
33internal class VisualStudioExtractInterfaceOptionsService : IExtractInterfaceOptionsService
6 references to IExtractInterfaceOptionsService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
ExtractInterface\ExtractInterfaceTestState.cs (1)
75return (TestExtractInterfaceOptionsService)ExtractFromDocument.Project.Solution.Services.GetService<IExtractInterfaceOptionsService>();
ExtractInterface\TestExtractInterfaceOptions.cs (1)
23[ExportWorkspaceService(typeof(IExtractInterfaceOptionsService), ServiceLayer.Test), Shared, PartNotDiscoverable]
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
Internal\ExtractInterface\OmniSharpExtractInterfaceOptionsService.cs (1)
25[ExportWorkspaceService(typeof(IExtractInterfaceOptionsService))]
Microsoft.CodeAnalysis.Features (2)
ExtractInterface\AbstractExtractInterfaceService.cs (2)
279var service = document.Project.Solution.Services.GetService<IExtractInterfaceOptionsService>();
Microsoft.VisualStudio.LanguageServices (1)
ExtractInterface\VisualStudioExtractInterfaceOptionsService.cs (1)
32[ExportWorkspaceService(typeof(IExtractInterfaceOptionsService), ServiceLayer.Host), Shared]