- Added default load context type resolution.

This commit is contained in:
Maplewheels
2026-01-25 16:50:58 -05:00
parent 0a9c673753
commit ed09908c3b

View File

@@ -119,9 +119,18 @@ public class PluginManagementService : IPluginManagementService, IAssemblyManage
if (includeDefaultContext)
{
var type = Type.GetType(typeName, false);
if (type is not null)
{
if (isByRefType)
{
return type.MakeByRefType();
}
return type;
}
}
// TODO: implement by-ref type resolution
//TODO: implement ALC resolutions.
throw new NotImplementedException();
}