我正在运行集成测试,当我到达那行代码时:
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 这个重定向程序集的东西是自动完成的。但它没有发生......