- Some work on PluginManagementService, IAssemblyLoaderService and IAssemblyManagementService refactors.

- Fixed mod list sync not checking for zero package diff length.
- Fixed the services provider not being able to inject itself as a dependcency.
- Added UseInternalName data spec to ModConfig.xml
- Changed Basic.Reference.Assemblies to Net80.
This commit is contained in:
MapleWheels
2026-01-29 18:01:45 -05:00
committed by Maplewheels
parent 37e3a195dc
commit 13a9bc443e
13 changed files with 324 additions and 180 deletions
@@ -182,7 +182,7 @@ public partial class LoggerService : ILoggerService
return;
}
if (result.Errors.Any())
if (result.IsFailed)
{
foreach (var error in result.Errors)
{
@@ -192,7 +192,7 @@ public partial class LoggerService : ILoggerService
}
else
{
LogError(error.Message);
LogError($"FluentResults::IError: {error.Message}");
}