设置与 Visual Studio 2010 和 Team Foundation Server 2010 的持续集成
是否有关于如何使用这两个确切的软件来执行此操作的良好指南?我找到了很多通用的 CI 设置指南,但没有一个涉及这两个确切的组件。
Is there a good guide on how to do this with these two exact pieces of software? I have found a lot of generalized CI setup guides, but none involving these two exact components.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TFS 使设置持续集成服务器变得非常简单。您首先需要创建一个新的 TFS 项目< /a>.然后,您需要将 Visual Studio 配置为 使用新的项目。最后,您可以在 TFS 中设置项目的构建。有一篇相当不错的博客帖子 关于如何做。重要的一步是设置构建触发器:
< img src="https://i.sstatic.net/tSFRY.png" alt="alt text">
您可以设置各种构建触发器,包括连续计划。显然,构建定义可能会变得更加复杂。部署选项、配置选项,但希望这足以帮助您入门。
TFS makes setting up a continuous integration server very simple. You will first need to create a new TFS project. Then you need to configure Visual Studio to use your new project. Finally, you can setup a build for the project within TFS. There is a pretty good blog post about how to do it. The important step is setting the build trigger:
You can set various build triggers, including a continuous schedule. Obviously, you can get much more complex with the build definition. Deployment options, config options, but hopefully this will be enough to get you started.