4 implementations of ITaskListService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
TaskList\NoCompilationTaskListTests.cs (1)
52internal sealed class NoCompilationTaskListService : ITaskListService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
TaskList\FSharpTaskListService.cs (1)
17internal sealed class FSharpTaskListService : ITaskListService
Microsoft.CodeAnalysis.Features (2)
ExternalAccess\VSTypeScript\VSTypeScriptTaskListService.cs (1)
20internal sealed class VSTypeScriptTaskListService([Import(AllowDefault = true)] IVSTypeScriptTaskListServiceImplementation impl) : ITaskListService
TaskList\AbstractTaskListService.cs (1)
15internal abstract class AbstractTaskListService : ITaskListService
10 references to ITaskListService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
TaskList\NoCompilationTaskListTests.cs (1)
51[ExportLanguageService(typeof(ITaskListService), language: NoCompilationConstants.LanguageName), Shared]
Microsoft.CodeAnalysis.CSharp.Features (1)
TaskList\CSharpTaskListService.cs (1)
17[ExportLanguageService(typeof(ITaskListService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
TaskList\AbstractTaskListTests.cs (2)
39var service = document.GetRequiredLanguageService<ITaskListService>();
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
TaskList\FSharpTaskListService.cs (1)
16[ExportLanguageService(typeof(ITaskListService), LanguageNames.FSharp)]
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\VSTypeScript\VSTypeScriptTaskListService.cs (1)
17[ExportLanguageService(typeof(ITaskListService), InternalLanguageNames.TypeScript), Shared]
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Diagnostics\DiagnosticSources\TaskListDiagnosticSource.cs (2)
38var service = this.Document.GetLanguageService<ITaskListService>();
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\TaskList\RemoteTaskListService.cs (2)
32var service = document.GetRequiredLanguageService<ITaskListService>();