-
Notifications
You must be signed in to change notification settings - Fork 18
/
PlugInLoadContext.cs
33 lines (28 loc) · 961 Bytes
/
PlugInLoadContext.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System.Reflection;
using System.Runtime.Loader;
namespace HostApp;
public class PlugInLoadContext : AssemblyLoadContext
{
private readonly AssemblyDependencyResolver _resolver;
private readonly ICollection<string> _plugInApiAssemblyNames;
public PlugInLoadContext(
string pluginPath,
ICollection<string> plugInApiAssemblies)
{
_resolver = new AssemblyDependencyResolver(pluginPath);
_plugInApiAssemblyNames = plugInApiAssemblies;
}
protected override Assembly Load(AssemblyName assemblyName)
{
if (!_plugInApiAssemblyNames.Contains(assemblyName.Name!))
{
string? assemblyPath = _resolver.ResolveAssemblyToPath(assemblyName);
if (assemblyPath != null)
{
return LoadFromAssemblyPath(assemblyPath);
}
}
return AssemblyLoadContext.Default.LoadFromAssemblyName(
assemblyName);
}
}