System.Web.MVC.dll仍然引用Beta版本
我正在从另一台计算机(构建机器)运行我的解决方案的构建,并发现该系统仍在引用 System.Web.MVC.dll 的 Beta 版本。我怎样才能让它引用1.0版本的dll?
I'm running a build of my solution from a different computer (build machine), and found out that that system is still referencing the Beta version of System.Web.MVC.dll. How can I get it to reference the 1.0 version of the dll?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为,您需要在配置中指定显式 dll 版本来解决此问题
I think, you need to specify explicit dll version in config to resolve this issue
您可以编辑项目
csproj
吗?在VS中右键>卸载项目
,再次右键>编辑 {project}.csproj
然后找到“引用”部分。看看它引用了什么。Can you edit the project
csproj
? In VS, right-click >Unload Project
, right-click again >Edit {project}.csproj
then find the References section. See what it's referencing.