// 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.
namespace GenerateDocumentationAndConfigFiles
{
public static class CommonPropertyNames
{
public const string NetAnalyzersPackageName = "Microsoft.CodeAnalysis.NetAnalyzers";
public const string NetAnalyzersNugetAssemblyVersionPropertyName = "_NETAnalyzersNuGetAssemblyVersion";
public const string NetAnalyzersSDKAssemblyVersionPropertyName = "_NETAnalyzersSDKAssemblyVersion";
public const string TextAnalyzersPackageName = "Text.Analyzers";
public const string CodeAnalysisAnalyzersPackageName = "Microsoft.CodeAnalysis.Analyzers";
public const string PublicApiAnalyzersPackageName = "Microsoft.CodeAnalysis.PublicApiAnalyzers";
public const string PerformanceSensitiveAnalyzersPackageName = "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers";
public const string ResxSourceGeneratorPackageName = "Microsoft.CodeAnalysis.ResxSourceGenerator";
}
}
|