From: Tom McDonald Date: Thu, 24 Jun 2021 20:17:39 +0000 (-0700) Subject: Add CustomAttributes ApplyUpdate Capability (#54619) X-Git-Tag: submit/tizen/20210909.063632~592 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d84e014ac2b6d11b1ddc452ce1a7706395abcb6;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Add CustomAttributes ApplyUpdate Capability (#54619) * Add CustomAttributes ApplyUpdate Capability * Rename CustomAttributes ChangeCustomAttributes per #54284 --- diff --git a/src/coreclr/System.Private.CoreLib/src/System/Reflection/Metadata/AssemblyExtensions.cs b/src/coreclr/System.Private.CoreLib/src/System/Reflection/Metadata/AssemblyExtensions.cs index 15ee7bd..97b908a 100644 --- a/src/coreclr/System.Private.CoreLib/src/System/Reflection/Metadata/AssemblyExtensions.cs +++ b/src/coreclr/System.Private.CoreLib/src/System/Reflection/Metadata/AssemblyExtensions.cs @@ -84,7 +84,7 @@ namespace System.Reflection.Metadata internal static string GetApplyUpdateCapabilities() { - return "Baseline AddMethodToExistingType AddStaticFieldToExistingType AddInstanceFieldToExistingType NewTypeDefinition"; + return "Baseline AddMethodToExistingType AddStaticFieldToExistingType AddInstanceFieldToExistingType NewTypeDefinition ChangeCustomAttributes"; } } }