Hello, everyone!
What is the most terse way to convert $(Property) to @(ItemList) in MSBUILD file?
Hello, everyone!
What is the most terse way to convert $(Property) to @(ItemList) in MSBUILD file?
<ItemGroup>
<SomeItem Include="$(Property)"/>
</ItemGroup>
It seems, that one could use $(Property) when item array is expected. So there no need for conversion.