I am creating an MSBuild task that will generate one or more files, I have a Task with an [output] property that is of type ITaskItem[]. My question is, do I need to implement that interface myself or is there a class I can use already?

I want them to be Compile task items that get added to the list of files to compile.

link|improve this question

feedback

closed as off topic by justin.m.chase Dec 29 '08 at 14:45

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 1 down vote accepted

It turns out there is a TaskItem class already. It's pretty general but should work just fine. If you set the ItemName="Compile" on the output element in your targets file it will create them as Compile items and add them to the collection. No problem

link|improve this answer
You can also create a nested ItemGroup below your task that includes or removes your output from item groups. – justin.m.chase Jul 13 '10 at 16:50
feedback

I still can't figure out how to get the project CodeDomProvider though...

link|improve this answer
1  
Related issue stackoverflow.com/questions/395313/… – Norman H Jul 12 '10 at 19:46
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.