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 class ExtensionManager uses Assembly.LoadFrom to load extensions identified by their assembly file path. This method may lead to duplicate assemblies loaded in same context.
A better option would be to use Assembly.Load and subscribe to the AppDomain.AssemblyResolve event to actually tell the runtime to select the correct file.
The text was updated successfully, but these errors were encountered:
The class
ExtensionManager
usesAssembly.LoadFrom
to load extensions identified by their assembly file path. This method may lead to duplicate assemblies loaded in same context.A better option would be to use
Assembly.Load
and subscribe to theAppDomain.AssemblyResolve
event to actually tell the runtime to select the correct file.The text was updated successfully, but these errors were encountered: