Browse Source

Add ReferenceAssemblyAttribute to KnownAttributes

pull/1243/head
Siegfried Pammer 7 years ago
parent
commit
c14c69b7e2
  1. 2
      ICSharpCode.Decompiler/TypeSystem/Implementation/KnownAttributes.cs

2
ICSharpCode.Decompiler/TypeSystem/Implementation/KnownAttributes.cs

@ -48,6 +48,7 @@ namespace ICSharpCode.Decompiler.TypeSystem
AssemblyVersion, AssemblyVersion,
InternalsVisibleTo, InternalsVisibleTo,
TypeForwardedTo, TypeForwardedTo,
ReferenceAssembly,
// Type attributes: // Type attributes:
Serializable, Serializable,
@ -109,6 +110,7 @@ namespace ICSharpCode.Decompiler.TypeSystem
new TopLevelTypeName("System.Reflection", nameof(AssemblyVersionAttribute)), new TopLevelTypeName("System.Reflection", nameof(AssemblyVersionAttribute)),
new TopLevelTypeName("System.Runtime.CompilerServices", nameof(InternalsVisibleToAttribute)), new TopLevelTypeName("System.Runtime.CompilerServices", nameof(InternalsVisibleToAttribute)),
new TopLevelTypeName("System.Runtime.CompilerServices", nameof(TypeForwardedToAttribute)), new TopLevelTypeName("System.Runtime.CompilerServices", nameof(TypeForwardedToAttribute)),
new TopLevelTypeName("System.Runtime.CompilerServices", nameof(ReferenceAssemblyAttribute)),
// Type attributes: // Type attributes:
new TopLevelTypeName("System", nameof(SerializableAttribute)), new TopLevelTypeName("System", nameof(SerializableAttribute)),
new TopLevelTypeName("System", nameof(FlagsAttribute)), new TopLevelTypeName("System", nameof(FlagsAttribute)),

Loading…
Cancel
Save