TFS 可以使用“通配符”构建多个解决方案吗?或类似的?
如果我想在 TFS Build 中构建多个解决方案,我可以将多个 SolutionToBuild
元素添加到构建定义中。
但是,我想指定文件夹的路径,然后让 TFS 自动查找并构建此文件夹和子文件夹中的所有解决方案,而无需为每个单独的解决方案添加 SolutionToBuild
元素。
这可能吗?
If I want to build multiple solutions in TFS Build I can add multiple SolutionToBuild
elements to the Build Definition.
However, I want to specify a path to a folder, and then have TFS automatically find and build all solutions in this folder and subfolder, without me adding a SolutionToBuild
element for each individual solution.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的,但不能按原样使用默认构建模板。在构建执行的早期阶段,找到合适的构建过程触发器并包括在提供的目录中查找解决方案的步骤,并将这些解决方案输入到
SolutionToBuild
变量的列表中。然后您的脚本将继续,就像您添加了多个SolutionToBuild
元素一样。Yes, this is possible, but not with the default build template as is. In the early stages of build execution, find a suitable build process trigger and include a step that finds your solutions in a supplied directory, and enter these solutions in the list of the
SolutionToBuild
variable. Then your script will continue as if you have added multipleSolutionToBuild
elements.不,这是不可能的。您可以打开构建默认模板并查看如何使用 MSBuild 构建要构建的项目/解决方案。
No this is not possible. You can open the build default template and see how the projects/solutions to build are built with MSBuild.