File: Diagnostics\FSharpDiagnosticCustomTags.cs
Web Access
Project: src\src\VisualStudio\ExternalAccess\FSharp\Microsoft.CodeAnalysis.ExternalAccess.FSharp.csproj (Microsoft.CodeAnalysis.ExternalAccess.FSharp)
// 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
 
namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Diagnostics
{
    internal static class FSharpDiagnosticCustomTags
    {
#pragma warning disable CA1819 // Properties should not return arrays
        public static string[] Microsoft => CodeAnalysis.Diagnostics.DiagnosticCustomTags.Microsoft;
 
        public static string[] EditAndContinue => CodeAnalysis.Diagnostics.DiagnosticCustomTags.EditAndContinue;
 
        public static string[] Unnecessary => CodeAnalysis.Diagnostics.DiagnosticCustomTags.Unnecessary;
#pragma warning restore CA1819 // Properties should not return arrays
    }
}