Browse Source

Re-enable attribute output

pull/728/head
Daniel Grunwald 10 years ago
parent
commit
e2beaf7c9f
  1. 1
      ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs

1
ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs

@ -96,6 +96,7 @@ namespace ICSharpCode.Decompiler.CSharp @@ -96,6 +96,7 @@ namespace ICSharpCode.Decompiler.CSharp
TypeSystemAstBuilder CreateAstBuilder(ITypeResolveContext decompilationContext)
{
var typeSystemAstBuilder = new TypeSystemAstBuilder();
typeSystemAstBuilder.ShowAttributes = true;
typeSystemAstBuilder.AlwaysUseShortTypeNames = true;
typeSystemAstBuilder.AddResolveResultAnnotations = true;
return typeSystemAstBuilder;

Loading…
Cancel
Save