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

RuntimeBinderException

using System; namespace Microsoft.CSharp.RuntimeBinder { public class RuntimeBinderException : Exception { public RuntimeBinderException() { } public RuntimeBinderException(string message) : base(message) { } public RuntimeBinderException(string message, Exception innerException) : base(message, innerException) { } } }