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

github.com/mono/ikdasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2017-06-01 02:51:03 +0300
committerMarek Safar <marek.safar@gmail.com>2017-06-01 16:00:44 +0300
commit1d7d43603791e0236b56d076578657bee44fef6b (patch)
tree9e877fb31d83cc5f1a0b0045d0a422c550fa743f /Program.cs
parent88b67c42ca8b7d58141c176b46749819bfcef166 (diff)
Add support for dumping more portable pdb tables.
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
index fcee1ea..8d99b66 100644
--- a/Program.cs
+++ b/Program.cs
@@ -51,6 +51,14 @@ namespace Ildasm
{ "moduleref", v =>tableToDump = MetadataTableIndex.ModuleRef },
{ "exported", v =>tableToDump = MetadataTableIndex.ExportedType },
{ "customattr", v =>tableToDump = MetadataTableIndex.CustomAttribute },
+ { "module", v => tableToDump = MetadataTableIndex.Module },
+ { "document", v => tableToDump = MetadataTableIndex.Document },
+ { "methoddebuginformation", v => tableToDump = MetadataTableIndex.MethodDebugInformation },
+ { "localscope", v => tableToDump = MetadataTableIndex.LocalScope },
+ { "localvariable", v => tableToDump = MetadataTableIndex.LocalVariable },
+ { "localconstant", v => tableToDump = MetadataTableIndex.LocalConstant },
+ { "importscope", v =>tableToDump = MetadataTableIndex.ImportScope },
+ { "customdebuginfo", v => tableToDump = MetadataTableIndex.CustomDebugInformation },
};
args = p.Parse (args).ToArray ();
if (printUsage) {