Open drewgillies opened 4 years ago
If you have a group of PNGs with the following names and add them to an SDK-style csproj manually:
<ItemGroup> <EmbeddedResource Include="Icons\environmentoverrides-16.png" /> <EmbeddedResource Include="Icons\environmentoverrides-16%402x.png" /> <EmbeddedResource Include="Icons\environmentoverrides-16~dark.png" /> <EmbeddedResource Include="Icons\environmentoverrides-16~dark%402x.png" /> </ItemGroup> <ItemGroup> <None Remove="Icons\environmentoverrides-16.png" /> <None Remove="Icons\environmentoverrides-16%402x.png" /> <None Remove="Icons\environmentoverrides-16~dark.png" /> <None Remove="Icons\environmentoverrides-16~dark%402x.png" /> </ItemGroup>
...the solution explorer/pad won't exclude them properly (there will still be duplicates of the PNGs with %40 in the name):
Removing the duplicates from the solution explorer will create additional Remove items.
VS bug #1028085
If you have a group of PNGs with the following names and add them to an SDK-style csproj manually:
...the solution explorer/pad won't exclude them properly (there will still be duplicates of the PNGs with %40 in the name):
Removing the duplicates from the solution explorer will create additional Remove items.