尝试创建 V8ScriptEngine 实例失败并出现 IExpando 错误
Attempting to create V8ScriptEngine instance fails with IExpando error
我正在尝试创建 V8ScriptEngine 的实例,但出现如下异常:
using Microsoft.ClearScript.V8;
V8ScriptEngine engine = new V8ScriptEngine();
异常:"Could not load type 'System.Runtime.InteropServices.Expando.IExpando' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'."
我错过了什么?这是 ClearScript 版本 5.4
要获得 .NET Core 支持,您需要 ClearScript 6.0(或更高版本)。
我正在尝试创建 V8ScriptEngine 的实例,但出现如下异常:
using Microsoft.ClearScript.V8;
V8ScriptEngine engine = new V8ScriptEngine();
异常:"Could not load type 'System.Runtime.InteropServices.Expando.IExpando' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'."
我错过了什么?这是 ClearScript 版本 5.4
要获得 .NET Core 支持,您需要 ClearScript 6.0(或更高版本)。