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

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) { } } }