<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0-preview.1.21102.12" />

FactoryId

class FactoryId
using System.Diagnostics; namespace System.Configuration { [DebuggerDisplay("FactoryId {ConfigKey}")] internal class FactoryId { internal string ConfigKey { get; } internal string Group { get; } internal string Name { get; } internal FactoryId(string configKey, string group, string name) { ConfigKey = configKey; Group = group; Name = name; } } }