Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/linker/Linker.Steps/MarkStep.cs')
-rw-r--r--src/linker/Linker.Steps/MarkStep.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/linker/Linker.Steps/MarkStep.cs b/src/linker/Linker.Steps/MarkStep.cs
index 7bb060381..c9d46760f 100644
--- a/src/linker/Linker.Steps/MarkStep.cs
+++ b/src/linker/Linker.Steps/MarkStep.cs
@@ -1756,14 +1756,16 @@ namespace Mono.Linker.Steps
MarkType (type.BaseType, new DependencyInfo (DependencyKind.BaseType, type));
+ MarkCustomAttributes (type, new DependencyInfo (DependencyKind.CustomAttribute, type));
+
// The DynamicallyAccessedMembers hiearchy processing must be done after the base type was marked
- // (to avoid inconsistencies in the cache), but before anything else as work done below
+ // (to avoid inconsistencies in the cache), and after marking custom attributes (in case the attributes have
+ // warning suppressions for the type hierarchy marking) but before anything else as work done below
// might need the results of the processing here.
_dynamicallyAccessedMembersTypeHierarchy.ProcessMarkedTypeForDynamicallyAccessedMembersHierarchy (type);
if (type.DeclaringType != null)
MarkType (type.DeclaringType, new DependencyInfo (DependencyKind.DeclaringType, type));
- MarkCustomAttributes (type, new DependencyInfo (DependencyKind.CustomAttribute, type));
MarkSecurityDeclarations (type, new DependencyInfo (DependencyKind.CustomAttribute, type));
if (type.IsMulticastDelegate ()) {