A tool to index convert files into 4bpp indexed graphics with palettes to be used with embedded development kits.

agbidx.csproj 441B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.1</TargetFramework>
  5. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  6. <LangVersion>7.2</LangVersion>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="CommandLineParser" Version="2.3.65" />
  10. <PackageReference Include="System.Drawing.Common" Version="4.5.1" />
  11. </ItemGroup>
  12. </Project>