如何使用 Visual Studio Express Web 2010 发布网站
我需要使用 Visual Studio 2010 Express(Web 开发人员)发布一个网站(以发布模式构建的 DLL)。
任何想法,比如使用批处理,或者其他什么,因为我没有专业版本。
I need to publish a web site (DLLs built in release mode) using Visual Studio 2010 Express (Web Developer).
Any idea like using batch, or whatever, since I don't have the professional version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于你在做什么。如果这是一个内部 IT 安排,其中您的服务器已经配置了基本环境、依赖项等,您可以只使用 msbuild 或 MS Deploy / Web 部署 将您的更改同步到开发、测试和生产(或您所说的任何名称)。查看 Scott Gu 的博客文章:
VS2010 Web 部署
但是,如果您正在创建一个将交付给客户的产品(例如 Sharepoint 或 Team Foundation Server),那么我会查看 Windows Installer / WiX / InstallShield 来创建一个完整的系统,用于收缩包装和部署您的应用程序以及所有内容它的底层依赖关系和配置详细信息。
It depends what you are doing. If it's an internal IT arrangement where you have servers that already are configured with your base environment, dependencies and what not you can just use technologies like msbuild or MS Deploy / Web Deploy to syncronize your changes into dev, test and production ( or whatever you call it ). Check out Scott Gu's blog article:
VS2010 Web Deployment
But if you are creating a product that will ship to customers ( like Sharepoint or Team Foundation Server ) then I would look at Windows Installer / WiX / InstallShield to create a complete system for shrinkwrapping and deploying your application and all of it's nderlying dependencies and configuration details.