File: WellKnownTypeNames.cs
Web Access
Project: src\src\Razor\src\Analyzers\Razor.Diagnostics.Analyzers\Razor.Diagnostics.Analyzers.csproj (Razor.Diagnostics.Analyzers)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Razor.Diagnostics.Analyzers;
 
internal static class WellKnownTypeNames
{
    public const string ImmutableArray_T = "System.Collections.Immutable.ImmutableArray`1";
 
    public const string PooledArrayBuilderExtensions = "Microsoft.AspNetCore.Razor.PooledObjects.PooledArrayBuilderExtensions";
 
    public const string EnumerableExtensions = "System.Collections.Generic.EnumerableExtensions";
    public const string ReadOnlyListExtensions = "System.Collections.Generic.ReadOnlyListExtensions";
 
    public const string IRemoteJsonService = "Microsoft.CodeAnalysis.Razor.Remote.IRemoteJsonService";
    public const string RazorPinnedSolutionInfoWrapper = "Microsoft.CodeAnalysis.ExternalAccess.Razor.RazorPinnedSolutionInfoWrapper";
    public const string DocumentId = "Microsoft.CodeAnalysis.DocumentId";
}