From d9b6f17d50bdb953ff8d673561cab3b72602fd69 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Mon, 9 Oct 2023 00:19:32 -0700 Subject: [PATCH] Fix test prototypes fields being marked as unused (#20853) --- Content.IntegrationTests/TestPrototypesAttribute.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.IntegrationTests/TestPrototypesAttribute.cs b/Content.IntegrationTests/TestPrototypesAttribute.cs index fc533927a4d59b..a6728d6728e15b 100644 --- a/Content.IntegrationTests/TestPrototypesAttribute.cs +++ b/Content.IntegrationTests/TestPrototypesAttribute.cs @@ -1,9 +1,12 @@ +using JetBrains.Annotations; + namespace Content.IntegrationTests; /// /// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests. /// [AttributeUsage(AttributeTargets.Field)] +[MeansImplicitUse] public sealed class TestPrototypesAttribute : Attribute { }