<Using>
nodes can not be both marked as Static
and be an Alias
.
For more info
see.
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<Using Include="NamespaceA.Type" Static="True" Alias="AType" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<Using Include="NamespaceA.Type" Alias="AType" />
</ItemGroup>
</Project>