7

我正在运行集成测试,当我到达那行代码时:

        WebApiDependencyResolverConfig.Register(config); 

(使用里面的autofac容器)

我得到这个例外:

{"Could not load file or assembly 'System.Web.Http, Version=5.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.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"}

融合日志:

=== Pre-bind state information ===
LOG: DisplayName = System.Web.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
 (Fully-specified)
LOG: Appbase = file:///C:/TLP/TLP.API.IntegrationTests/bin/Debug
LOG: Initial PrivatePath = NULL
Calling assembly : Autofac.Integration.WebApi, Version=3.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\TLP\TLP.API.IntegrationTests\bin\Debug\TLP.API.IntegrationTests.dll.config
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config

似乎 autofac web api 集成仅适用于 web api 2.0。当我使用不再引用 system.web.http 5.0.0 而是引用 5.1.0 的 web api 2.1 时,它就不再工作了。

如何告诉 autofac 使用 system.web.http 5.1.0 版本而不是 5.0.0 ?

我把它放在我的集成测试和 API 项目的 app.config 中:

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Http"
                        publicKeyToken="32ab4ba45e0a69a1"
                        culture="neutral" />
      <bindingRedirect oldVersion="5.0.0.0"
                       newVersion="5.1.0.0"/>
    </dependentAssembly>
  </assemblyBinding>
  </runtime>

但它没有用!

另一件非常奇怪的事情是,我已经读过使用 .NET 4.5.1 这个重定向程序集的东西是自动完成的。但它没有发生......

4

2 回答 2

8

我已将更新的包推送到 NuGet for Web API 2.1 和 MVC 5.1。

http://www.nuget.org/packages/Autofac.WebApi2

https://www.nuget.org/packages/Autofac.Mvc5

微软显然对语义版本的规则有不同的解释,因为作为次要版本的 5.1 应该“以向后兼容的方式添加功能”。这不是 5.1.0 包的情况,因为强命名程序集版本增加了。

Autofac 程序集是强命名的,但在 3.0 系列版本期间,仅更新包和文件版本。程序集版本始终保持在 3.0.0.0 以防止在包更新期间发生此类重大更改。不幸的是,我们无法控制 ASP.NET 依赖项,并且在发生这种情况时必须重新编译。

于 2014-01-28T13:00:02.337 回答
4

如此处此处此处所解释的,当使用不同的强命名密钥重新编译引用的程序集时,会导致公钥令牌不匹配。

这只能通过针对较新的程序集编译 autofac 库来解决。

于 2014-01-27T20:29:57.180 回答