There is some code in our solution that adds components to reports at runtime. In 2020.5.1 we had to use System.Drawing there, including for some Fonts. I was able to reduce the usage of System.Drawing to just be some Enums by changing to Stimulsoft.Drawing classes where possible. This seems to have resolved the issue. Here are the ones I had to leave behind:
- System.Drawing.FontStyle.Bold
- System.Drawing.StringTrimming.EllipsisCharacter
- System.Drawing.Text.HotkeyPrefix.None
- System.Drawing.Printing.PaperKind (Various sizes in this Enum were used)
Thanks