ASP.NET编译器抱怨MiniProfiler不匹配的框架版本

我有一个MVC3项目,我从VS2010升级到VS2012。该项目还引用了MiniProfiler。我们的应用程序在VS2012中编译并运行良好,无任何警告/错误。使用IIS Express运行时,两个程序集都会正常运行。但是,当使用ASP.NET编译器工具时,我会收到以下警告:

Microsoft (R) ASP.NET Compilation Tool version 4.0.30319.17929 Utility
to precompile an ASP.NET application copyright (C) Microsoft
Corporation. All rights reserved.

(0): warning : The following assembly has dependencies on a version of
the .NET Framework that is higher than the target and might not load
correctly during runtime causing a failure: MiniProfiler,
Version=2.1.0.0,Culture=neutral,PublicKeyToken=b44f9351044011a3. The
dependencies are: System.Data.Linq,Version=4.0.0.0,
PublicKeyToken=b77a5c561934e089. You should either ensure that the
dependent assembly is correct for the target framework,or ensure that
the target framework you are addressing is that of the dependent
assembly.

我们没有对System.Data.Linq的明确引用。直到VS2012的更新,我们没有任何错误。 MiniProfiler版本的确是针对.NET 4.0(我们的应用程序)。可能会导致此警告?

解决方法

我终于可以用 this answer提示修复它了。我添加了以下< add>在web.config中的行:
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <!-- etc... -->
        <add assembly="System.Data.Linq,PublicKeyToken=b77a5c561934e089" />
        <!-- etc... -->
      </assemblies>
    </compilation>
  <system.web>
</configuration>

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....