Razor視圖引擎中,使用部分視圖編譯報錯
類型“System.Object”在未被引用的程序集中定義。必須添加對程序集“System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a”的引用

查找網上一些解決方案,在微軟官網找到同樣問題

最后解決方案:
在web.config文件system.web/compilation節點添加配置節點
<compilation debug="true" targetFramework="4.5" >
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
