Files
RemoteExec/RemoteExec.Server/RemoteJobAssemblyLoadContext.cs
T
2025-12-23 15:15:18 +01:00

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)
{
}