From 1cb458a4ddccb5c22bb455defaa4bad4a4359440 Mon Sep 17 00:00:00 2001 From: Steven Liekens Date: Thu, 14 Nov 2024 21:07:32 +0000 Subject: [PATCH] Fix missing AOT attribute --- GW2SDK/Features/Flags.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GW2SDK/Features/Flags.cs b/GW2SDK/Features/Flags.cs index 610569838..b087e3fbe 100644 --- a/GW2SDK/Features/Flags.cs +++ b/GW2SDK/Features/Flags.cs @@ -1,10 +1,12 @@ -using System.Reflection; +using System.Diagnostics.CodeAnalysis; +using System.Reflection; namespace GuildWars2; /// The base type for flags objects. [PublicAPI] [DataTransferObject] +[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] public abstract record Flags { /// Other undocumented flags. If you find out what they mean, please open an issue or a pull request.