asp.net-mvc-4 – 如何解决Antlr3依赖地狱

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-4 – 如何解决Antlr3依赖地狱前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个asp.net MVC 4项目与MEF和RavenBD。

项目加载时会抛出此异常:无法加载文件或程序集Antlr3.Runtime.dll

我发现RavenDB和WebGrease(与MVC 4一起安装)都使用Antlr3。但WebGrease自带的Antlr3 dll,由Microsoft签署 – PublicKeyToken 31bf3856ad364e35

Antlr3默认PublicKeyToken是eb42632606e9261f。

RavenDB和WebGrease使用相同版本的Antlr3 3.3.1.7705

如何解决这个问题?

解决方法

不幸的是,我没有找到与不同签名相同版本的冲突相依性的解决方案。

但好消息是,WebGrease的贡献者之一Howard Dierking通过电子邮件回答了我的疑虑。这是他的回应:

Hi Maxime – sorry that you ran into this. I’m working to do a couple
things to quickly resolve the issue:

1) Preparing an update to the antlr package with the latest antlr
version – will test and push to nuget.org

2) Working with the WebGrease team to change their NuGet package
so that it does not ship the antlr.dll but rather takes a package
dependency – in talking with them,they were unaware that a package
existed.

This should resolve the dll hell issue that you ran into. Hopefully
this won’t take more than a couple weeks with the holidays.

Thanks,

_howard

原文链接:https://www.f2er.com/aspnet/252216.html

猜你在找的asp.Net相关文章