diff --git a/Dalamud/IoC/PluginServiceAttribute.cs b/Dalamud/IoC/PluginServiceAttribute.cs index 80baceb55..0cf107677 100644 --- a/Dalamud/IoC/PluginServiceAttribute.cs +++ b/Dalamud/IoC/PluginServiceAttribute.cs @@ -1,11 +1,14 @@ using System; +using JetBrains.Annotations; + namespace Dalamud.IoC { /// /// This attribute indicates whether an applicable service should be injected into the plugin. /// [AttributeUsage(AttributeTargets.Property)] + [MeansImplicitUse(ImplicitUseKindFlags.Assign)] public class PluginServiceAttribute : Attribute { }