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>2015-11-18 14:24:11 +0300
committerZoltan Varga <vargaz@gmail.com>2015-11-18 14:24:11 +0300
commit323eeecdf13c39527c53efa5f6c8487765ee42c0 (patch)
tree137b4154b5e1da5ac18bfb04011cd9f1efb2e6e8 /Program.cs
parentd6db90d6780d5cdb37ef97ec36d0cb452ac70e9e (diff)
Add --assemblyref and --moduleref options to dump the AssemblyRef/ModuleRef metadata tables.
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
index 1a8c39a..f994575 100644
--- a/Program.cs
+++ b/Program.cs
@@ -47,6 +47,8 @@ namespace Ildasm
{ "help", v => printUsage = true },
{ "out", v => outputFile = v },
{ "assembly", v =>tableToDump = MetadataTableIndex.Assembly },
+ { "assemblyref", v =>tableToDump = MetadataTableIndex.AssemblyRef },
+ { "moduleref", v =>tableToDump = MetadataTableIndex.ModuleRef },
};
args = p.Parse (args).ToArray ();
if (printUsage) {