I want to extract values defined in an item group collection of TFSBuild.proj file in a C# application during a build . Can someone give me an idea as to how this can be done.
views:
31answers:
2
A:
"Extract" is a weird word to use here. If you're wanting to combine C# with MSBuild, you generally do that by creating an MSBuild Task. Tasks take inputs, which can be ItemGroups and they do stuff with the items in the group.
Dave Markle
2009-08-18 00:58:44