我正在创建一个新的 MVC 4 网站,我想使用 Unity.MVC3 库与 MVC 中内置的 DependencyResolver 内容集成。
我还想从一个旧的、更大的项目中引用一些数据访问 DLL。
我的问题是 Unity.MVC3 和较旧的 DLL 分别针对不同版本的 Unity 1.2.0.0 和 2.1.505.0 进行编译。我尝试在我的 web.config 文件中创建绑定重定向,如下所示:
<dependentAssembly>
<assemblyIdentity name="Microsoft.Practices.Unity" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersions="1.2.0.0-2.1.505.0" newVersion="2.1.505.0" />
</dependentAssembly>
但是,我仍然收到以下错误:
Could not load file or assembly 'Microsoft.Practices.Unity, Version=1.2.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)
我打开了程序集绑定日志记录,最后两行说明:
WRN: Comparing the assembly name resulted in the mismatch: Major Version
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.
为什么我的绑定重定向不被尊重?有没有办法覆盖它对主要版本冲突的检查?