System.Web.HttpCompileException:类型“ <>”在未引用的程序集中定义

时间:2018-07-18 10:45:25

标签: c# asp.net asp.net-mvc-5 asp.net-mvc-views

在将.NET Framework升级到4.7.2之后发现此错误:

  

System.Web.HttpCompileException:some.cshtml(95):错误CS0012:   类型“ IEnumerable <>”在未引用的程序集中定义。   您必须添加对程序集“ netstandard,Version = 2.0.0.0,   文化=中性,PublicKeyToken = cc7b13ffcd2ddd51'。'

我应该在哪里添加参考?

1 个答案:

答案 0 :(得分:2)

位于github。将以下内容添加到web.Config文件中:

<compilation debug="true" targetFramework="4.7.2" >
  <assemblies>
    <add assembly="netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51"/>
  </assemblies>
</compilation>