TFS 可以使用“通配符”构建多个解决方案吗?或类似的?

发布于 2024-12-05 03:09:29 字数 198 浏览 3 评论 0原文

如果我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青衫负雪 2024-12-12 03:09:29

是的,这是可能的,但不能按原样使用默认构建模板。在构建执行的早期阶段,找到合适的构建过程触发器并包括在提供的目录中查找解决方案的步骤,并将这些解决方案输入到 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 multiple SolutionToBuild elements.

属性 2024-12-12 03:09:29

不,这是不可能的。您可以打开构建默认模板并查看如何使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文