Add infrastructure to support multiple execution environments

This commit is contained in:
Stone_Red
2025-12-26 13:31:14 +01:00
parent 8211825bef
commit 252aca98b4
7 changed files with 296 additions and 158 deletions
@@ -11,4 +11,9 @@ public class ExecutionConfiguration
/// Timeout for assembly loading requests in seconds. Default is 30 seconds.
/// </summary>
public int AssemblyLoadTimeoutSeconds { get; set; } = 30;
/// <summary>
/// Type of execution environment to use. Default is "AssemblyLoadContext".
/// </summary>
public string ExecutionEnvironment { get; set; } = "AssemblyLoadContext";
}