Attribute '<attributename>' cannot be applied multiple times
The attribute can only be applied once. The AttributeUsage attribute determines whether an attribute can be applied more than once.
Error ID: BC30663
To correct this error
Make sure the attribute is only applied once.
If you are using custom attributes you developed, consider changing their AttributeUsage attribute to allow multiple attribute usage, as with the following example.
<AttributeUsage(AllowMultiple := True)>