Hi again!
To enable ClearScriptV8 assembly loading via
This should allow hosts to override ClearScript's loading process via the event.
We'd love to hear your thoughts!
To enable ClearScriptV8 assembly loading via
AppDomain.AssemblyResolve
, we'd like to propose the following new code at the top of V8Proxy.LoadAssembly
:try { assembly = Assembly.Load("ClearScriptV8"); return; } catch (FileNotFoundException) { }
We'd love to hear your thoughts!