This commit is contained in:
2025-06-08 20:11:50 -04:00
commit 837f3929e4
4 changed files with 580 additions and 0 deletions

12
HeicConvert.csproj Normal file
View File

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<!-- ImageMagick library for HEIC support -->
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.1.0" />
</ItemGroup>
</Project>