<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0-preview.6.25358.103" />

ProviderAliasAttribute

Defines an alias for ILoggerProvider implementation to be used in filtering rules.
using System; using System.Runtime.CompilerServices; namespace Microsoft.Extensions.Logging { [NullableContext(1)] [Nullable(0)] [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public class ProviderAliasAttribute : Attribute { public string Alias { get; } public ProviderAliasAttribute(string alias) { Alias = alias; } } }