I have an ItemGroup as:
<ItemGroup>
<FilesToExclude Include="One.dll;Two.dll" />
</ItemGroup>
I want to be able to have a property group which has the concatenated result of the above dlls producing (excluding the double quotes):
"-x!One.dll -x!Two.dll"
I am currently using:
<tmp>
-x! @(FilesToExclude)
</tmp>
which is producing:
"-x!One.dll;Two.dll"
Any ideas?