Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs')
-rw-r--r--extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs b/extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs
index 1e15c6dce2..483d09a9eb 100644
--- a/extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs
+++ b/extras/MonoDevelop.Debugger.Win32/CorApi2/Metadata/CorMetadata.cs
@@ -877,6 +877,9 @@ namespace Microsoft.Samples.Debugging.CorMetadata
attr = MetadataHelperFunctions.GetCustomAttribute (importer, token, typeof (System.Diagnostics.DebuggerBrowsableAttribute));
if (attr != null)
attributes.Add (attr);
+ attr = MetadataHelperFunctions.GetCustomAttribute (importer, token, typeof (System.Runtime.CompilerServices.CompilerGeneratedAttribute));
+ if (attr != null)
+ attributes.Add (attr);
if (attributes.Count == 0)
return emptyAttributes;