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
The library originally use Assembly.ReflectionOnlyLoadFrom() as a mechanism for reading assembly metadata. This function is no longer supported in netcoreapp, and as a temporary workaround it has been crudely replaced with Assembly.Load(), resulting in unneeded assemblies being loaded in the current context. This should be replaced with something like System.Reflection.Metadata eventually.
The text was updated successfully, but these errors were encountered:
The library originally use
Assembly.ReflectionOnlyLoadFrom()
as a mechanism for reading assembly metadata. This function is no longer supported in netcoreapp, and as a temporary workaround it has been crudely replaced withAssembly.Load()
, resulting in unneeded assemblies being loaded in the current context. This should be replaced with something likeSystem.Reflection.Metadata
eventually.The text was updated successfully, but these errors were encountered: