fix: PM must depend on ServiceContainer since LocalPlugin uses it to create scopes

This commit is contained in:
goat 2023-05-22 21:34:12 +02:00
parent 34bb2a7ad4
commit 6a055783ba
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -41,6 +41,9 @@ namespace Dalamud.Plugin.Internal;
// DalamudTextureWrap registers textures to dispose with IM
[InherentDependency<InterfaceManager>]
// LocalPlugin uses ServiceContainer to create scopes
[InherentDependency<ServiceContainer>]
#pragma warning restore SA1015
internal partial class PluginManager : IDisposable, IServiceType
{