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
When using this project with .NET Core, you have to use the new package from microsoft for System.Drawing (this one: System.Drawing.Common) in which they apparently changed the field name of "iconData" to "_iconData", hence the static IconUtil() method is currently throwing a System.ArgumentNullException for gen.Emit(OpCodes.Ldfld, fi); since the variable fi is null.
I tried with "_iconData" and everything seems to be fine now.
The text was updated successfully, but these errors were encountered:
When using this project with .NET Core, you have to use the new package from microsoft for System.Drawing (this one: System.Drawing.Common) in which they apparently changed the field name of "iconData" to "_iconData", hence the
static IconUtil()
method is currently throwing aSystem.ArgumentNullException
forgen.Emit(OpCodes.Ldfld, fi);
since the variablefi
is null.I tried with "_iconData" and everything seems to be fine now.
The text was updated successfully, but these errors were encountered: