File: ExternalAccess\UnitTesting\SolutionCrawler\ExportUnitTestingIncrementalAnalyzerProviderAttribute.cs
Web Access
Project: src\src\roslyn\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features)
// 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 System;
using System.Composition;

namespace Microsoft.CodeAnalysis.ExternalAccess.UnitTesting.SolutionCrawler;

[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class)]
internal sealed class ExportUnitTestingIncrementalAnalyzerProviderAttribute : ExportAttribute
{
    public string Name { get; }
    public string[] WorkspaceKinds { get; }

    public ExportUnitTestingIncrementalAnalyzerProviderAttribute(string name, string[] workspaceKinds)
        : base(typeof(IUnitTestingIncrementalAnalyzerProvider))
    {
        this.WorkspaceKinds = workspaceKinds;
        this.Name = name ?? throw new ArgumentNullException(nameof(name));
    }
}