<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" />

SettingsProviderAttribute

public sealed class SettingsProviderAttribute : Attribute
Indicates the provider associated with a group of/individual setting.
namespace System.Configuration { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] public sealed class SettingsProviderAttribute : Attribute { private readonly string _providerTypeName; public string ProviderTypeName => _providerTypeName; public SettingsProviderAttribute(string providerTypeName) { _providerTypeName = providerTypeName; } public SettingsProviderAttribute(Type providerType) { if (providerType != (Type)null) _providerTypeName = providerType.AssemblyQualifiedName; } } }