<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0-preview.2.23128.3" />

IInternalConfigRoot

public interface IInternalConfigRoot
namespace System.Configuration.Internal { public interface IInternalConfigRoot { bool IsDesignTime { get; } event InternalConfigEventHandler ConfigChanged; event InternalConfigEventHandler ConfigRemoved; void Init(IInternalConfigHost host, bool isDesignTime); object GetSection(string section, string configPath); string GetUniqueConfigPath(string configPath); IInternalConfigRecord GetUniqueConfigRecord(string configPath); IInternalConfigRecord GetConfigRecord(string configPath); void RemoveConfig(string configPath); } }