Add code to decode OS/2 monochrome icons and pointers, and a separate Icon Viewer for debugging.

This commit is contained in:
2018-03-05 12:50:28 +00:00
parent 378cbd5d33
commit ec57e0fd03
11 changed files with 446 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net461</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Eto.Platform.Wpf" Version="2.4.1" />
<PackageReference Include="Eto.Platform.Gtk" Version="2.4.1" />
<PackageReference Include="Eto.Platform.Mac64" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\iconviewer\iconviewer.csproj" />
</ItemGroup>
</Project>