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

Update

abstract class Update
namespace System.Configuration { internal abstract class Update { internal string ConfigKey { get; } internal bool Moved { get; } internal string UpdatedXml { get; } internal bool Retrieved { get; set; } internal Update(string configKey, bool moved, string updatedXml) { ConfigKey = configKey; Moved = moved; UpdatedXml = updatedXml; } } }