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

前端之家收集整理的这篇文章主要介绍了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>
原文链接:https://www.f2er.com/aspnet/252478.html

猜你在找的asp.Net相关文章