是否可以导出 TFS 2010 构建定义?
我正在清理旧的构建定义,并且想要备份它们,以防万一我丢失了某些内容,有没有办法使用 Visual Studio 2010 导出构建定义?
I'm cleaning up old build definitions and I want to back them up in case there is something I'm missing, is there a way to export the build definitions using Visual Studio 2010?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Team Foundation Power Tools 命令有一个命令,允许将构建定义导出/转储到文本文件。
从 Visual Studio 命令提示符处:
C:\Program Files\Microsoft Visual Studio 10.0\VC>tfpt builddefinition /dump ProjectName\BuildDefinitionName /filepath:C:\filename.txt /collection:uri
Team Foundation Power Tools commands has a command that will allow one to export/dump out a build definition to a text file.
From the Visual Studio command prompt:
C:\Program Files\Microsoft Visual Studio 10.0\VC>tfpt builddefinition /dump ProjectName\BuildDefinitionName /filepath:C:\filename.txt /collection:uri
您可以使用 TFS API 将其导出为可以将其重新加载的格式,如 如何在项目之间移动 TFS 2010 构建定义? .
You could use the TFS API to export it to a format that you could load it back in with like in How to Move TFS 2010 Build Definition between Projects? .