2 implementations of IFixAllGetFixesService
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (1)
FixAllGetFixesService.cs (1)
25internal class FixAllGetFixesService : IFixAllGetFixesService, IWorkspaceServiceFactory
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Suggestions\FixAll\FixAllGetFixesService.cs (1)
25internal class FixAllGetFixesService : IFixAllGetFixesService, IWorkspaceServiceFactory
10 references to IFixAllGetFixesService
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (1)
FixAllGetFixesService.cs (1)
24[ExportWorkspaceServiceFactory(typeof(IFixAllGetFixesService), ServiceLayer.Host), Shared]
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Suggestions\FixAll\FixAllGetFixesService.cs (1)
24[ExportWorkspaceServiceFactory(typeof(IFixAllGetFixesService), ServiceLayer.Host), Shared]
Microsoft.CodeAnalysis.Features (4)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (4)
65var service = FixAllState.Project.Solution.Services.GetRequiredService<IFixAllGetFixesService>(); 79var service = FixAllState.Project.Solution.Services.GetRequiredService<IFixAllGetFixesService>();
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\CodeCleanup\AbstractCodeCleanupService.cs (2)
185var fixAllService = document.Project.Solution.Services.GetRequiredService<IFixAllGetFixesService>();
Features\CodeFixes\CodeFixService.cs (2)
311var fixAllService = document.Project.Solution.Services.GetRequiredService<IFixAllGetFixesService>();