Msbuild 自定义任务 - For 循环
我想实现一个 Msbuild Custome 任务来循环项目列表并对每个项目执行一些操作。基本上我想在 msbuild 中构建一个 foreach 或 for 循环。
我已经四处搜索,但没有找到关于输出项目列表并循环遍历每个项目的有用信息
我得到了什么
如何实现自定义任务 http://blogs.msdn.com/b/ msbuild/archive/2006/01/21/515834.aspx
返回自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准 MSBuild 任务对集合进行操作(MSBuild 中的 ItemGroup,ITask 接口中的 ITaskItem[]),自定义任务也可以执行相同的操作。你不需要 foreach。
如果您需要自定义任务,您的任务将如下所示:
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: