When I run dotnet run --no-build for a dotnet app that uses .Save I get the following error message:
System.DllNotFoundException: Unable to load shared library ‘libaspose.slides.drawing.capi_x86_64_libstdcpp_libc2.23’ or one of its dependencies.
I use the cross-plattform version of Aspore.Slides on Unix provided with the zip release. The nuGet Version is not sufficient as System.Drawing.Common is no longer supported for Unix by Aspore.Slides, see this release note entry:
I installed the dependencies and replaced the libs bin/Debug/net6.0 with the libs from the zip release
sudo apt-get install -y libgdiplus && sudo apt-get install -y libc6-dev
I am using a docker image based on: mcr.microsoft.com/devcontainers/dotnet:6.0-bullseye
What is the correct way to install the zip release of Aspore.Slides on Debian 12?