ABP异常处理

1.编译器错误消息: CS0012: 类型“System.Object”在未被引用的程序集中定义。必须添加对程序集“System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a”的引用。

解决:Web.config中添加以下代码

<compilation debug="true" targetFramework="4.6.1">
 <assemblies>
 <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
 </assemblies>
</compilation>

参考:http://halilibrahimkalkan.com/asp-net-boilerplate-v0-8-and-asp-net-zero-v1-8-have-been-released/

原文地址:https://www.cnblogs.com/gdutzhulm/p/9385057.html