我是否必须将网站项目转换为 Web 应用程序项目才能迁移到 Azure?
我当前有一个网站项目需要迁移到 Windows Azure。早在 2009 年,我们就必须将网站项目转换为 Web 应用程序项目。今天仍然如此吗?
I have a current website project that I need to migrate to Windows Azure. Back in 2009 we had to convert the website project to a web application project. Is that still the case today?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 Web 应用程序项目,您的生活可能会轻松得多,但您可以使用网站项目。至少,您可以从命令行使用 cspack 并将其指向任何目录。您还可以使用ServiceDefinition.csdef 中的physicalDirectory 属性来指向任意目录。该目录可以是您的网站项目。
我不确定 Visual Studio 中是否有更好的方法将网站项目用作 Web 角色。
Your life will probably be a lot easier if you use web application projects, but you can use website projects. At the very least, you can use cspack from the command line and point it at any directory. You can also use the physicalDirectory attribute in ServiceDefinition.csdef to point to an arbitrary directory. That directory can be your website project.
I'm not sure if there are better ways from within Visual Studio to use a website project as a web role.
您可以将任何项目添加到 Windows Azure Visual Studio 项目。我喜欢先创建一个新的 Windows Azure 项目,然后向其中添加现有项目(而不是相反)。
You can add any project to the Windows Azure Visual Studio project. I like to create a new Windows Azure project first, and then add existing projects to it (rather than the other way around).