For property, we could use -property:<name>=<value>, is there any plan to introduce an option for item? maybe something likes -item:<name>=<value>? Which could produce
-item:Using=System.Net =>
<ItemGroup>
<Using Include="System.Net" />
</ItemGroup>
For attribute, maybe -item:<name>=<value>,@<attrName>=<attrValue>
-item:Using=System.Net.IPNetwork,@Alias=SysIPNetwork =>
<ItemGroup>
<Using Include="System.Net.IPNetwork" Alias="SysIPNetwork" />
</ItemGroup>