如何将数据传递到 MSBuild 任务的 ITaskItem 属性?
我有一个在 MSBuild 中使用的自定义任务。 效果很好。 以前,我有一些属性接受一些字符串
数据。 有人建议我应该将它们更改为ITaskItem
。 这样,如果我有空间,就不会有问题。
前面的代码
public class CompressorTask : Task
{
....
public string CssFiles { get; set; }
public string JavaScriptFiles { get; set; }
}
示例 msbuild 文件(例如 MsBuildSample.xml)...
<CompressorTask
CssFiles="StylesheetSample1.css, StylesheetSample2.css,
StylesheetSample3.css, StylesheetSample4.css"
JavaScriptFiles="jquery-1.2.6-vsdoc.js"
... />
请注意我是如何获得 4 个 css 文件的? 我通过 , 或 空格分隔符手动提取它们。 基尔。
新代码
public ITaskItem[] CssFiles { get; set; }
public ITaskItem[] JavaScriptFiles { get; set; }
现在,我不确定需要在 MSBuild 文件的 CssFiles 属性中设置什么值。
有什么建议么?
i have a custom Task which i use in MSBuild. Works great.
Previously, i had some properties which accepted some string
data. It was suggested I should change them to ITaskItem
's. This way, if i have spaces, i shouldn't have a problem.
Previous code
public class CompressorTask : Task
{
....
public string CssFiles { get; set; }
public string JavaScriptFiles { get; set; }
}
example msbuild file (eg. MsBuildSample.xml)...
<CompressorTask
CssFiles="StylesheetSample1.css, StylesheetSample2.css,
StylesheetSample3.css, StylesheetSample4.css"
JavaScriptFiles="jquery-1.2.6-vsdoc.js"
... />
Notice how i've got 4 css files? i manually extracted them by the , or space delimeter. Kewl.
New Code
public ITaskItem[] CssFiles { get; set; }
public ITaskItem[] JavaScriptFiles { get; set; }
Now, i'm not sure what values i need to set, in the CssFiles property, in the MSBuild file.
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您现在需要将文件放入带有属性名称的项目列表中:
I think you now need to put the files into an itemlist with the name of the property:
这实际上更容易,只需使用字符串数组即可。 指定值时,使用单个值、分号分隔的列表(如果您愿意,可以使用空格)或 ItemGroup(例如 @(someItemGroup)),MSBuild 足够智能,可以为您解决这个问题:
MSBuild 任务源:
This is actually way easier, just use a string array. When specifying the values, use a single value, a semi-colon separated list (with whitespace if you like), or an ItemGroup (e.g. @(someItemGroup)), MSBuild is smart enough to figure this out for you:
MSBuild task source: