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

ILoggingBuilder

public interface ILoggingBuilder
An interface for configuring logging providers.
using Microsoft.Extensions.DependencyInjection; using System.Runtime.CompilerServices; namespace Microsoft.Extensions.Logging { [System.Runtime.CompilerServices.NullableContext(1)] public interface ILoggingBuilder { IServiceCollection Services { get; } } }