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
This is critical for Linux/Docker-hosted services. Magic with libgdiplus package installation didn't work in my case.
Possible solution: do not create AutoSizeColumnTracker in the constructor but move it to Lazy<AutoSizeColumnTracker> so it will be created on demand. My solution: msvprogs@71788be
The text was updated successfully, but these errors were encountered:
I didn't say so :) But let's only use it on explicit calls of auto-sizing methods or properties. Current version of sheet constructor triggers some static initialization method of GDI+, which causes an exception on Linux. With Lazy<> problem is gone (GDI+ is called only when using auto-sizing methods).
This is critical for Linux/Docker-hosted services. Magic with
libgdiplus
package installation didn't work in my case.Possible solution: do not create
AutoSizeColumnTracker
in the constructor but move it toLazy<AutoSizeColumnTracker>
so it will be created on demand. My solution: msvprogs@71788beThe text was updated successfully, but these errors were encountered: