我正在准备一个全新的ASP。NET MVC 5.1解决方案。我添加了一堆NuGet包,并设置它与Zurb基金会等。
作为其中的一部分,我已经添加了一个内部NuGet包的引用,它是一个可移植类库,我认为这在构建服务器上造成了一个问题。
TeamCity在以下情况下构建失败:
系统类型。对象在未引用的程序集中定义。必须向程序集“System”添加引用。= 4.0.0.0运行时版本
我最初在编译Razor网页时为相同或类似的错误添加了修复,该修复在web.config中
<compilation ... >
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
然而,这个问题尚未解决。
要实现修复,首先要扩展现有的web。配置编译部分,默认情况下看起来像这样:
<compilation debug="true" targetFramework="4.5"/>
展开之后,我按照指示添加了以下新的配置XML:
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
最终的网。配置标签应该是这样的:
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
我也面临着这个问题,试图运行一个ASP .NET MVC项目后,我们的代码库的一个小更新,即使它编译没有错误:
编译器错误信息:CS0012:类型为“系统”。对象在未引用的程序集中定义。必须向程序集“System”添加引用。运行时,版本=4.0.0.0,文化=中立,PublicKeyToken=b03f5f7f11d50a3a'。
我们的项目从未遇到过这个问题,所以我对在找出根本原因之前更改配置文件持怀疑态度。从错误日志中,我能够找到这个详细的编译器输出,指出了真正发生的事情:
warning CS1685: The predefined type 'System.Runtime.CompilerServices.ExtensionAttribute' is defined in multiple assemblies in the global alias; using definition from 'c:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll'
c:\Users\Admin\Software Development\source-control\Binaries\Publish\WebApp\Views\Account\Index.cshtml(35,20): error CS0012: The type 'System.Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\meseems.webapp\68e2ea0f\8c5ee951\assembly\dl3\52ad4dac\84698469_3bb3d401\System.Collections.Immutable.DLL: (Location of symbol related to previous error)
显然,我们项目中添加的一个新包引用了旧版本的. net框架,导致了“在多个程序集中定义”问题(CS1685),这导致了运行时的剃刀视图编译器错误。
我删除了不兼容的包(System.Collections.Immutable.dll),问题不再发生。但是,如果在您的项目中无法删除该包,则需要尝试巴霍巴利的答案。