- Made SyncPackages function always complete the unload->reload process.

- Basic assembly loading is completed (alpha), unloading/disposal not yet supported.
This commit is contained in:
MapleWheels
2026-01-30 16:38:55 -05:00
committed by Maplewheels
parent 4f02cb4967
commit 5421c7df4f
2 changed files with 77 additions and 55 deletions
@@ -296,16 +296,11 @@ public sealed class PackageManagementService : IPackageManagementService
result.WithReasons(UnloadPackages(toRemove).Reasons);
}
if (result.IsFailed)
{
return result;
}
if (!toAdd.IsDefaultOrEmpty)
{
result.WithReasons(LoadPackagesInfo(toAdd).Reasons);
}
return result;
}