Msbuild 自定义任务 - For 循环

发布于 2024-12-07 06:49:42 字数 725 浏览 0 评论 0原文

我想实现一个 Msbuild Custome 任务来循环项目列表并对每个项目执行一些操作。基本上我想在 msbuild 中构建一个 foreach 或 for 循环。

我已经四处搜索,但没有找到关于输出项目列表并循环遍历每个项目的有用信息

我得到了什么

如何实现自定义任务 http://blogs.msdn.com/b/ msbuild/archive/2006/01/21/515834.aspx

返回自定义 msbuild 任务的输出

从 MsBuild 任务返回输出?

是否可以使用 msbuild 自定义任务来实现我的想法?

更新:

我想要一些东西

<Foreach item='String' in="PropertyGroups" Property='MyPropertyName'>
   //do what ever to use $(MypropertyName) for other tasks
</Foreach>

I would like to implement a Msbuild Custome task to loop a list of items and do something about each item. Basically I would liketo build a foreach or for loop in msbuild.

I have searched around but didn't find much useful information about output a list of items and loop though each of them

What I got

How to implement Custom Tasks
http://blogs.msdn.com/b/msbuild/archive/2006/01/21/515834.aspx

Return output from a custom msbuild task

Return output from an MsBuild task?

Is it possible to implement my though with msbuild custom task?

Update:

I would like something

<Foreach item='String' in="PropertyGroups" Property='MyPropertyName'>
   //do what ever to use $(MypropertyName) for other tasks
</Foreach>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

薄荷梦 2024-12-14 06:49:42

标准 MSBuild 任务对集合进行操作(MSBuild 中的 ItemGroup,ITask 接口中的 ITaskItem[]),自定义任务也可以执行相同的操作。你不需要 foreach。

如果您需要自定义任务,您的任务将如下所示:

<MyTask TaskItems="@(blah)"/>

Standard MSBuild tasks operate on collections (ItemGroup in MSBuild-ese, ITaskItem[] in the ITask interface) and custom tasks can do the same. You don't need a foreach.

Your task, if you need a custom task, would look like this:

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