|
// 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.
#nullable disable
using System;
using System.Composition;
namespace Microsoft.CodeAnalysis.ExternalAccess.UnitTesting.SolutionCrawler
{
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class)]
internal class ExportUnitTestingIncrementalAnalyzerProviderAttribute : ExportAttribute
{
#if false // Not used in unit testing crawling
public bool HighPriorityForActiveFile { get; }
#endif
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));
#if false // Not used in unit testing crawling
this.HighPriorityForActiveFile = false;
#endif
}
#if false // Not used in unit testing crawling
public ExportUnitTestingIncrementalAnalyzerProviderAttribute(bool highPriorityForActiveFile, string name, string[] workspaceKinds)
: this(name, workspaceKinds)
{
this.HighPriorityForActiveFile = highPriorityForActiveFile;
}
#endif
}
}
|