vote up 1 vote down star

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.

flag

closed as no longer relevant by just in case Dec 29 '08 at 14:45

2 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag

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