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

Loading…
Cancel
Save