<PackageReference Include="Microsoft.CSharp" Version="4.7.0-preview1.19504.10" />

DynamicBindingFailedException

using System; using System.ComponentModel; using System.Runtime.Serialization; namespace Microsoft.CSharp.RuntimeBinder { [Serializable] [EditorBrowsable(EditorBrowsableState.Never)] internal sealed class DynamicBindingFailedException : Exception { public DynamicBindingFailedException() { } private DynamicBindingFailedException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }