33

本地 - 我的 MVC 4、asp.net、c# 应用程序在 IIS 8 / Windows 8 上运行良好。

部署到 Windows Server 2008 时,我收到此错误:

Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

[FileLoadException: Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)]
   Elmah.Mvc.Bootstrap.Initialize() +0

[InvalidOperationException: The pre-application start initialization method Initialize on type Elmah.Mvc.Bootstrap threw an exception with the following error message: Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040).]
   System.Web.Compilation.BuildManager.InvokePreStartInitMethodsCore(ICollection`1 methods, Func`1 setHostingEnvironmentCultures) +12881963
   System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +12881672
   System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath) +240
   System.Web.Compilation.BuildManager.ExecutePreAppStart() +152
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +1151

[HttpException (0x80004005): The pre-application start initialization method Initialize on type Elmah.Mvc.Bootstrap threw an exception with the following error message: Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040).]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +12881108
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +159
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +12722297

如果我从项目属性/包/发布 web.xml 中的“要部署的项目”下拉列表中选择“仅运行此应用程序所需的文件”,则会发生这种情况。

如果我选择“此项目中的所有文件”,它工作正常。

我猜 Elmah 依赖于旧版本的 MVC 或其他东西——我怎样才能在不上传所有文件的情况下解决这个问题?

解决此类问题的最佳方法是什么?

谢谢。

4

6 回答 6

63

我在使用 MVC4 和为 .Net 4.5 构建的 Ninject 时遇到了同样的问题

为了解决这个问题,我必须在我的 Web.config 文件中添加一个绑定重定向:(在文件末尾,就在</configuration>标签之前)

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
      </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35"/>
    <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
  </dependentAssembly>
    </assemblyBinding>
  </runtime>

这会强制 Web 服务器使用System.Web.Mvc 4.0.0.0旧版本而不是旧版本。

于 2013-08-30T08:12:51.993 回答
1
<dependentAssembly>
            ***<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="0.0.0.0-5.2.7.0"*** newVersion="5.2.7.0" />
        </dependentAssembly>

检查是否有正确的版本

于 2019-07-02T04:28:01.477 回答
0

有一些程序可以解决这个问题,如果绑定重定向web.config不能解决问题,您可以尝试以下步骤来解决它:

1)在 Visual Studio 解决方案资源管理器树中,右键单击 Web 项目下的引用,然后选择管理 NuGet 包。

2)转到浏览选项卡并选择nuget.org作为包源。

3)搜索并安装以下软件包:Ninject,Ninject.Web.CommonNinject.MVC5.

最好在ASP.NET MVC管理 NuGet 包的更新选项卡上更新包,尤其是 Microsoft。

希望这可以帮助...

于 2018-05-10T10:09:52.813 回答
0

安装System.Web.Mvc 3.0.0.0版本

1) 安装windows web 平台安装程序
2) 从开始菜单打开 Windows web 平台安装程序
3) 转到Products选项卡
4) 搜索 MVC
5) 安装 MVC 3

在此处输入图像描述

于 2019-11-21T11:25:20.927 回答
-1

在错误页面中,我有这个:

LOG:在应用程序配置文件中检测到重定向:5.1.0.0 被重定向到 5.2.3.0。

所以我不得不将 web.config 中的这一行更改为5.1.0.0版本,它工作了!

<dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.1.0.0" />
    <!--<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> Older line -->
  </dependentAssembly>

我认为这是由于我从 TFS 下载代码时的版本问题

希望这可以帮助

于 2016-12-20T15:26:11.110 回答
-2

在 web.config 中添加以下代码:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.1" />
  </dependentAssembly>
</assemblyBinding>

于 2017-08-14T07:25:07.977 回答