File: TaskList\TaskListIncrementalAnalyzerProvider.cs
Web Access
Project: ..\..\..\src\VisualStudio\Core\Def\Microsoft.VisualStudio.LanguageServices_ckcrqypr_wpftmp.csproj (Microsoft.VisualStudio.LanguageServices)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Options;
using Microsoft.CodeAnalysis.SolutionCrawler;
using Microsoft.CodeAnalysis.TaskList;
 
namespace Microsoft.VisualStudio.LanguageServices.TaskList
{
    /// <remarks>Note: this is explicitly <b>not</b> exported.  We don't want the workspace
    /// to automatically load this.  Instead, VS waits until it is ready
    /// and then calls into the service to tell it to start analyzing the solution.  At that point we'll get
    /// created and added to the solution crawler.
    /// </remarks>
    internal sealed class TaskListIncrementalAnalyzerProvider : IIncrementalAnalyzerProvider
    {
        private readonly IGlobalOptionService _globalOptions;
        private readonly VisualStudioTaskListService _listener;
 
        public TaskListIncrementalAnalyzerProvider(IGlobalOptionService globalOptions, VisualStudioTaskListService listener)
        {
            _globalOptions = globalOptions;
            _listener = listener;
        }
 
        public IIncrementalAnalyzer CreateIncrementalAnalyzer(Workspace workspace)
            => new TaskListIncrementalAnalyzer(_globalOptions, _listener);
    }
}