升级到 ASP.NET MVC 版本 2
我今天一直在 ASP.NET MVC 项目上做一些工作,我尝试发布该网站,但出现错误。我的托管服务提供商告诉我,这是因为我拥有版本 1,而他们支持版本 2。 我怎样才能升级到版本2? 两个版本之间的差异是否如此巨大以至于后续版本不支持先前版本?
谢谢
I have been doing some work on a ASP.NET MVC project today i tried to publish the website but i ve got an error. my hosting service provider told me is due to the fact that i have version 1 while they support version 2.
how can i upgrade to version 2?
are the differences between the two version so extreme that a previous version is not supported by the successuve?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这看起来很不寻常,因为:
That seems very unusual, because:
这听起来是倒退的(即我会看看他们是否只支持 1,而不是 2)。 2还不是最终版本,除非我错得很离谱。
MVC 应该是可进行 bin 部署的。只需标记引用(对当前的 v1 引用)即可复制到本地并尝试以这种方式发布。
This sounds backwards (i.e. I would see if they only supported 1, not 2). 2 is not yet final, unless I'm very much wrong.
MVC should be bin-deployable. Just mark the reference (to your current v1 ref) to copy local and try publishing that way.
MSDN 上有一个指导文档:将 ASP.NET MVC 1.0 应用程序升级到 ASP.NET MVC 2。我今天使用了它,它对迁移我的应用程序非常有帮助。
There is a guidance document on MSDN :Upgrading an ASP.NET MVC 1.0 Application to ASP.NET MVC 2. I used it today and it was very helpful in migrating my application.