2 implementations of IDocumentDifferenceService
Microsoft.CodeAnalysis.Features (1)
SolutionCrawler\AbstractDocumentDifferenceService.cs (1)
16internal abstract class AbstractDocumentDifferenceService : IDocumentDifferenceService
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Host\RemoteDocumentDifferenceService.cs (1)
24internal class RemoteDocumentDifferenceService : IDocumentDifferenceService
8 references to IDocumentDifferenceService
Microsoft.CodeAnalysis.CSharp.Features (1)
SolutionCrawler\CSharpDocumentDifferenceService.cs (1)
14[ExportLanguageService(typeof(IDocumentDifferenceService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.Features (2)
SolutionCrawler\WorkCoordinator.cs (2)
537var differenceService = newDocument.GetLanguageService<IDocumentDifferenceService>();
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.IncrementalMemberEditAnalyzer.cs (2)
211var documentDifferenceService = document.GetRequiredLanguageService<IDocumentDifferenceService>();
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Host\RemoteDocumentDifferenceService.cs (2)
26[ExportLanguageService(typeof(IDocumentDifferenceService), LanguageNames.CSharp, layer: WorkspaceKind.Host), Shared] 36[ExportLanguageService(typeof(IDocumentDifferenceService), LanguageNames.VisualBasic, layer: WorkspaceKind.Host), Shared]
Microsoft.CodeAnalysis.VisualBasic.Features (1)
SolutionCrawler\VisualBasicDocumentDifferenceService.vb (1)
10<ExportLanguageService(GetType(IDocumentDifferenceService), LanguageNames.VisualBasic), [Shared]>