VS2005、VSS - 签到 +自动部署
我一直在使用 VS2005 和 VSS 来编写我正在处理的一些代码。是否有任何脚本可以让我将所有修改的源文件提交到 VSS 并使 VSS 向我们的 QA 服务器推送补丁?
谢谢,
特贾。
I'm stuck working with VS2005 and VSS for some of the code that I'm working on. Are there any scripts that let me commit all modified source files to VSS and make VSS push out a patch to our QA servers?
Thanks,
Teja.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否考虑过使用 CruiseControl.NET 来管理您的构建和删除?
听起来您想要一些额外的内容(“脚本...提交所有修改的源文件”),但 CC.NET 将负责构建/报告/部署。从您的问题中不清楚提交将来自哪里(开发人员机器,其他地方),或者为什么自动签入很有用。换句话说,开发人员不应该有目的地提交代码更改吗?
如何设置 CruiseControl.NET。
Have you considered CruiseControl.NET to manage your build and drop?
It sounds like you wanted a bit extra ("scripts...commit all modified source files"), but CC.NET will take care of building/reporting/deploying. It's not clear from your question where the commits will be coming from (a developer machine, somewhere else), or why automated check-ins are useful. In other words, shouldn't developers be purposefully committing code changes?
How to Setup CruiseControl.NET.
听起来您正在寻找一个 持续集成 服务器,它允许您在检测后运行构建脚本源代码控制的变化。尝试 TeamCity 或 CruiseControl.NET。
这是演练 详细介绍了 CI 与 TeamCity 和 Subversion 的设置过程。您可以通过 MSBuild 或任何命令行工具添加其他部署脚本。
Sounds like you're looking for a Continuous Integration server, which allows you to run build scripts after detecting changes in source control. Try TeamCity or CruiseControl.NET.
Here's a walk through that details the setup process for CI with TeamCity and Subversion. You can add additional scripts for deployment via MSBuild or any command line tool.