<ProjectReference>
nodes should be ordered alphabetically
within a single <ItemGroup>
in order to make it more
human readable. When ordering the references based on
other criteria, consider grouping them in seperate
<ItemGroup>
s.
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="LibraryB" />
<ProjectReference Include="LibraryA" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="LibraryA" />
<ProjectReference Include="LibraryB" />
</ItemGroup>
</Project>