File: src\RoslynAnalyzers\Utilities\Compiler\DiagnosticCategory.cs
Web Access
Project: src\src\RoslynAnalyzers\Roslyn.Diagnostics.Analyzers\Core\Roslyn.Diagnostics.Analyzers.csproj (Roslyn.Diagnostics.Analyzers)
// 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 Microsoft.CodeAnalysis.Diagnostics
{
    internal static partial class DiagnosticCategory
    {
        public const string Performance = nameof(Performance);
        public const string Naming = nameof(Naming);
        public const string Library = nameof(Library);
 
        public const string RoslynDiagnosticsDesign = nameof(RoslynDiagnosticsDesign);
        public const string RoslynDiagnosticsMaintainability = nameof(RoslynDiagnosticsMaintainability);
        public const string RoslynDiagnosticsPerformance = nameof(RoslynDiagnosticsPerformance);
        public const string RoslynDiagnosticsReliability = nameof(RoslynDiagnosticsReliability);
        public const string RoslynDiagnosticsUsage = nameof(RoslynDiagnosticsUsage);
 
        public const string MicrosoftCodeAnalysisCorrectness = nameof(MicrosoftCodeAnalysisCorrectness);
        public const string MicrosoftCodeAnalysisDesign = nameof(MicrosoftCodeAnalysisDesign);
        public const string MicrosoftCodeAnalysisDocumentation = nameof(MicrosoftCodeAnalysisDocumentation);
        public const string MicrosoftCodeAnalysisLocalization = nameof(MicrosoftCodeAnalysisLocalization);
        public const string MicrosoftCodeAnalysisPerformance = nameof(MicrosoftCodeAnalysisPerformance);
        public const string MicrosoftCodeAnalysisCompatibility = nameof(MicrosoftCodeAnalysisCompatibility);
        public const string MicrosoftCodeAnalysisReleaseTracking = nameof(MicrosoftCodeAnalysisReleaseTracking);
    }
}