PM must inherently depend on DataShare

This commit is contained in:
goat 2023-06-13 21:03:34 +02:00
parent 284001ce6b
commit 5ab6927014
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -26,6 +26,7 @@ using Dalamud.Networking.Http;
using Dalamud.Plugin.Internal.Exceptions;
using Dalamud.Plugin.Internal.Profiles;
using Dalamud.Plugin.Internal.Types;
using Dalamud.Plugin.Ipc.Internal;
using Dalamud.Utility;
using Dalamud.Utility.Timing;
using Newtonsoft.Json;
@ -45,6 +46,10 @@ namespace Dalamud.Plugin.Internal;
// LocalPlugin uses ServiceContainer to create scopes
[InherentDependency<ServiceContainer>]
// DalamudPluginInterface hands out a reference to this, so we have to keep it around
// TODO api9: make it a service
[InherentDependency<DataShare>]
#pragma warning restore SA1015
internal partial class PluginManager : IDisposable, IServiceType
{