Hello,
With the dotnet 6 core there is a new breaking change for aspose function :
public MemoryStream ConvertToPNGMemoryStream(); which use Gdip
Actually I use a workaround in my docker file I add these line when I create the image :
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim AS base
RUN apt-get update
RUN apt-get install -y apt-utils
RUN apt-get install -y libgdiplus
RUN apt-get install -y --no-install-recommends libc6-dev
and in my csproj : I enable a new item group with this parameter :
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Drawing.EnableUnixSupport" Value="true" />
</ItemGroup>
Actually it work but for how many time ? Is it planned to solve the probleme ?
Thanks,
Nicolas