Pass list item to Properties when calling reusable msbuild target
问题 I'm trying to create a reusable Target in msbuild, following the basic model outlined in How to invoke the same msbuild target twice? I'm stuck trying to pass a property that I want interpreted as a list. I haven't found an example online that deals with this situation. As I understand it, the problem is that Properties is already treated as a list item, so it doesn't like having a list item passed in as well. Is there a way to get msbuild to pack and unpack the list correctly here? Msbuild