You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like Microsoft.NET.Sdk.Functions version 3.0.8 places the runtimes folder inside netcoreapp3.1\ instead of netcoreapp3.1\bin.
I noticed this breaks the latest version of ImageMagick.NET as it cannot find its native library due to this change. There probably are other libraries affected by this change as well.
The text was updated successfully, but these errors were encountered:
Potential workaround if you cannot downgrade to 3.0.7
Put the below in your csproj, which will move the runtimes folder to the expected place after the build completes.
(Not sure if this breaks other things though)
It seems like
Microsoft.NET.Sdk.Functions
version3.0.8
places theruntimes
folder insidenetcoreapp3.1\
instead ofnetcoreapp3.1\bin
.I noticed this breaks the latest version of ImageMagick.NET as it cannot find its native library due to this change. There probably are other libraries affected by this change as well.
The text was updated successfully, but these errors were encountered: