mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 09:06:20 +02:00
11 lines
285 B
C#
11 lines
285 B
C#
using System.Runtime.Loader;
|
|
|
|
namespace RemoteExec.Server;
|
|
|
|
/// <summary>
|
|
/// An isolated assembly load context for remote job execution, allowing assemblies to be unloaded.
|
|
/// </summary>
|
|
public class RemoteJobAssemblyLoadContext(string name) : AssemblyLoadContext(name, true)
|
|
{
|
|
}
|