From 7ec00462ac97eaa8a42deb29f97bc585d2726be0 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sun, 30 Jan 2022 17:15:20 -0500 Subject: [PATCH] chore: mark PluginServiceAttribute with MeansImplicitUse --- Dalamud/IoC/PluginServiceAttribute.cs | 3 +++ 1 file changed, 3 insertions(+) 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 { }