Updated WebUI

This commit is contained in:
2024-10-31 17:02:28 +02:00
parent 9e8bfbbe16
commit 44d8b4684e
2100 changed files with 14269 additions and 217 deletions

View File

@@ -73,12 +73,17 @@ public static class Entry
var assemblyName = new AssemblyName(args.Name).Name + ".dll";
var assemblyPath = Path.Combine(folderPath, assemblyName);
Console.WriteLine("Requesting Assembly: " + requestingAssembly);
Console.WriteLine("Requested Assembly File: " + assemblyName);
if (File.Exists(assemblyPath))
{
var fileAssembly = Assembly.LoadFrom(assemblyPath);
Console.WriteLine("Loaded Assembly: " + fileAssembly.FullName);
return fileAssembly;
}
Console.WriteLine("Failed to load assembly: " + assemblyPath + ". File does not exist");
return null;
}