We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb99c1 commit ab713a4Copy full SHA for ab713a4
1 file changed
BepInEx.AssemblyPublicizer/AssemblyPublicizer.cs
@@ -80,6 +80,8 @@ private static void Publicize(TypeDefinition typeDefinition, OriginalAttributesA
80
{
81
foreach (var propertyDefinition in typeDefinition.Properties)
82
83
+ if (propertyDefinition.IsCompilerGenerated()) continue;
84
+
85
if (propertyDefinition.GetMethod is { } getMethod) Publicize(getMethod, attribute, options, true);
86
if (propertyDefinition.SetMethod is { } setMethod) Publicize(setMethod, attribute, options, true);
87
}
0 commit comments