Quantcast
Channel: ClearScript
Viewing all articles
Browse latest Browse all 2297

New Post: How to add the ClearScript.V8 assemblies into GAC

0
0
If we made the change above, the host could do something like this to override ClearScript's V8 loading process:
AppDomain.CurrentDomain.AssemblyResolve += (sender, args) =>
{
    if (args.Name == "ClearScriptV8")
    {
        return Assembly.LoadFrom(@"C:\Custom\Path\To\ClearScriptV8-64.dll");
    }

    returnnull;
};
Would that provide the flexibility you were looking for?

Viewing all articles
Browse latest Browse all 2297

Latest Images

Trending Articles





Latest Images