Start of using CoreCLR and automatic scriptglue generation

This commit is contained in:
Simon Lübeß
2025-07-14 22:14:41 +02:00
parent 063cbfa415
commit edfcfd3b20
24 changed files with 1548 additions and 540 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ public static class TypeExtension
string name = fullName.TrimEnd(']').ToString();
// Non generic type, easy!
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies().Reverse())
foreach (Assembly assembly in ((IEnumerable<Assembly>)AppDomain.CurrentDomain.GetAssemblies()).Reverse())
{
Type? type = assembly.GetType(name);