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

SettingsGroupNameAttribute

public sealed class SettingsGroupNameAttribute : Attribute
Specifies a name for application settings property group. This class cannot be inherited.
namespace System.Configuration { [AttributeUsage(AttributeTargets.Class)] public sealed class SettingsGroupNameAttribute : Attribute { private readonly string _groupName; public string GroupName => _groupName; public SettingsGroupNameAttribute(string groupName) { _groupName = groupName; } } }