Remove unused PNG from project manifest

This commit is contained in:
Andy McFadden 2023-03-30 17:25:19 -07:00
parent 74cc55de29
commit 08243bf19c
2 changed files with 10 additions and 4 deletions

View File

@ -1121,8 +1121,17 @@ namespace Asm65 {
sb.Append(mHexDumpBuffer);
}
/// <summary>
/// Formats up to 16 bytes of data and appends it to the StringBuilder.
/// </summary>
/// <param name="data">Reference to data.</param>
/// <param name="offset">Start offset.</param>
/// <param name="addr">Address to put at start of line.</param>
/// <param name="length">Number of bytes to format.</param>
/// <param name="sb">StringBuilder to append the data to.</param>
public void FormatHexDump(byte[] data, int offset, int addr, int length,
StringBuilder sb) {
Debug.Assert(length <= 16);
FormatHexDumpCommon(data, offset, addr, length);
sb.Append(mHexDumpBuffer);
}

View File

@ -491,11 +491,8 @@
<ItemGroup>
<Resource Include="Res\SourceGenIcon.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Res\AboutImage.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Res\RedX.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
</Project>