组装问题 asp.net mvc / mvc contrib

发布于 2024-09-08 03:25:18 字数 557 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑咖 2024-09-15 03:25:18

克里斯,
我将卸载引用 System.Web.Mvc 的任何项目并编辑它们,以确保它们

  • 指向 /lib 中位置的正确版本的 System.Web.Mvc
  • 不指向全局版本(gac)

Chris,
I would unload any of the projects that reference System.Web.Mvc and edit them to make sure they are

  • Pointed to the proper version of System.Web.Mvc at the location in the /lib
  • Are not pointed to the global version (gac)
对不⑦ 2024-09-15 03:25:18

基督教,
您是否也在您的网络项目中替换了它?任何引用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文