Added packages to running packages list on execution.

This commit is contained in:
Maplewheels
2026-01-25 16:05:39 -05:00
parent 25081466be
commit c2aa7dd948
@@ -235,6 +235,11 @@ public sealed class PackageManagementService : IPackageManagementService
} }
} }
foreach (var package in loadingOrderedPackages)
{
_runningPackages[package.Key] = package.Value;
}
return result; return result;
} }