从 VSS 部署站点
在回答这个问题时,Joel Coehoorn 说
最后,只有在网站经过适当的 QA 流程之后,生产服务器才会从源代码控制更新,而不是从 Visual Studio 内部更新。
VSS Explorer 是否有用于部署站点的工具(我认为是通过 FTP)? 我第一次注意到 Web/Deploy 菜单选项,但它是灰色的。 这是如何运作的?
In answer to this question Joel Coehoorn said
Finally, only after the site's gone through a suitable QA process, the production server is updated from source control, not from within visual studio.
Does VSS Explorer have tools for deploying sites (via FTP, I would assume)? I noticed for the first time a Web/Deploy menu option, but it's grayed out. How does this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我们在我们的项目中使用 Nant。 Nant 是 ant for java 的点网端口。 它具有从 VSS 检出、编译和部署的任务。
We use Nant for our project. Nant is a dot net port of ant for java. It has tasks to checkout from VSS, compile and deploy.
使用 MS Visual SourceSafe 管理 Web 内容
是的,您可以使用 VSS 资源管理器中的“Web 部署”功能通过 ftp 或网络共享进行部署。
Managing Web Content Using MS Visual SourceSafe
yes you can deploy via ftp or network share using the "web deploy" feature in the VSS explorer.
VSS 有一套相当全面的命令行参数。 我知道的最好方法是将批处理文件写入:
1 - 将最新版本获取到本地系统(大概是干净的构建机器)
2 - 将新更新的本地文件推送到您的 FTP 站点。
VSS has a pretty comprehensive set of command line arguments. The best way I know is to write a batch file to:
1 - Get Latest to the local system (presumably a clean build machine)
2 - Push the newly-updated local files to your FTP site.