2 implementations of IGenerateTypeOptionsService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Diagnostics\GenerateType\TestGenerateTypeOptionsService.cs (1)
19internal sealed class TestGenerateTypeOptionsService : IGenerateTypeOptionsService
Microsoft.VisualStudio.LanguageServices (1)
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
31private sealed class VisualStudioGenerateTypeOptionsService : IGenerateTypeOptionsService
5 references to IGenerateTypeOptionsService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
Diagnostics\GenerateType\GenerateTypeTestState.cs (1)
67return (TestGenerateTypeOptionsService)InvocationDocument.Project.Solution.Services.GetRequiredService<IGenerateTypeOptionsService>();
Diagnostics\GenerateType\TestGenerateTypeOptionsService.cs (1)
18[ExportWorkspaceService(typeof(IGenerateTypeOptionsService), ServiceLayer.Test), Shared, PartNotDiscoverable]
Microsoft.CodeAnalysis.Features (2)
GenerateType\AbstractGenerateTypeService.CodeAction.cs (2)
101var generateTypeOptionsService = _document.Project.Solution.Services.GetRequiredService<IGenerateTypeOptionsService>();
Microsoft.VisualStudio.LanguageServices (1)
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
19[ExportWorkspaceServiceFactory(typeof(IGenerateTypeOptionsService), ServiceLayer.Host), Shared]