我有大约 80 个项目的相当大的解决方案,使用 WebAPI (v1) 作为 Web 角色在 Azure 云服务服务器上运行。我通过实施 custom 创建了有关内容协商的新增强功能JsonReader/Writer
。当我尝试通过实现MediaTypeFormatter
基于它的自定义来使用BaseJsonMediaTypeFormatter
它失败时 - 准确地说,它在发布到 Azure 时失败。本地模拟它完美运行。一旦发布,它就会失败:
...
Role entrypoint could not be created: System.TypeLoadException: Unable to load the role entry point due to the following exceptions:
-- System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'
=== Pre-bind state information ===
LOG: DisplayName = Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed
(Fully-specified)
LOG: Appbase = file:///E:/approot/bin
LOG: Initial PrivatePath = E:\approot\bin
Calling assembly : System.Net.Http.Formatting, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
...
(从 EventViewer->Application and Services log->Windows Azure 捕获的日志)。
直到我尝试使用我的自定义MediaTypeFormatter
一切正常。我已经在互联网和 SO 上搜索了一些解决方案,尽管问题并不像我认为的那样罕见,但没有一个解决方案对我有帮助。我尝试了什么:
- 在所有引用项目中合并所有版本的
Newtonsoft.Json
nuget - 合并所有版本的
Microsoft.AspNet.WebApi.Client
nuget - 删除了对这两个库的所有引用,并通过引用 nuget 替换了这些对 dll 的引用
- 将两个 Nuget 包升级到最新版本(Json 12.0.3 和 Formatting 5.2.7)(我什至尝试在
Update-Package
命令中使用 -reinstall 参数) - 手动检查所有
csproj
引用旧Newtonsoft.Json
版本。 - 清理解决方案、bin、obj 文件夹、所有缓存文件
- 我的
web.config
文件包含(并且一直包含)正确bindingRedirect
的Newtonsoft.Json
- (可能还有一些其他的东西,我已经忘记了)
没有一个解决方案有效,我仍然收到这个奇怪的消息。我的问题是:
System.Net.Http.Formatting
当我明确说它应该重定向到第 12 个版本时,该库怎么可能需要某个特定版本的 Newtonsoft.Json?是不是因为它发生在 Webrole 启动期间(可能是因为它还不尊重 web.config?)- 为什么它在我的电脑上可以运行,但在 Azure 云服务上没有部署?它是否以某种方式在我的本地计算机上找到并使用旧版本的 Newtonsoft.Json lib(以及在哪里,所以我可以尝试删除它)?
- 有没有更好的方法来调试这个问题?也许记录加载引用的 DLL 的顺序以更接近错误?或者在我的本地计算机上复制错误?目前部署应用程序,登录远程桌面并检查云服务上的EventViewer非常耗时......
任何发现问题的提示将不胜感激。