组装问题 asp.net mvc / mvc contrib
我正在使用 s#arp 框架,并想使用最新的 mvc contrib。这意味着我必须使用asp.net mvc 2.0。因此,我引用了 mvc 2.0 的最新 2.0 dll 和最新的 mvc contrib dll,但仍然收到此错误:
Error 1 Assembly 'MvcContrib, Version=2.0.36.0, Culture=neutral, PublicKeyToken=null' using 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' 其版本高于引用的程序集 'System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' c:\Users\bla\ Downloads\MVCContrib.release(2)\MvcContrib.dll Bla.Web.Controllers
我检查了控制器项目中的 mvc dll,它是 2.0 版本。我还能做什么?
谢谢!
克里斯
I am using the s#arp framework and want to use the latest mvc contrib. This means that I have to use asp.net mvc 2.0. So I refrenced the latest 2.0 dll for mvc 2.0 and the latest mvc contrib dll but still get this error:
Error 1 Assembly 'MvcContrib, Version=2.0.36.0, Culture=neutral, PublicKeyToken=null' uses 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' c:\Users\bla\Downloads\MVCContrib.release(2)\MvcContrib.dll Bla.Web.Controllers
I checked the mvc dll in my controller project and it is version 2.0. what else can I do?
Thanks!
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
克里斯,
我将卸载引用 System.Web.Mvc 的任何项目并编辑它们,以确保它们
Chris,
I would unload any of the projects that reference System.Web.Mvc and edit them to make sure they are
基督教,
您是否也在您的网络项目中替换了它?任何引用 1.0 的地方,您都需要替换它。此外,您可能需要添加从 1.0 到 2.0 的程序集绑定重定向。
Christian,
did you also replace it in your web project? Anywhere 1.0 was referenced, you would need to replace it. In addition, you might need to add an assembly binding redirect from 1.0 to 2.0.