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:
authorMarek Safar <marek.safar@gmail.com>2015-02-18 16:07:07 +0300
committerMarek Safar <marek.safar@gmail.com>2015-02-18 16:07:07 +0300
commita3de8ec435d47292363b3012e76e2bc05e412d6d (patch)
treef41e72759c3f409498c418a0147274ba9b1c30b0 /Program.cs
parent7ded4decb9c39446be634d42a575fda9bc3d945c (diff)
parent8093e6b7fd791b3e1dbe69ece5dbeb2fa0bbd4c6 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
index 6d8ce03..43f828d 100644
--- a/Program.cs
+++ b/Program.cs
@@ -92,6 +92,10 @@ namespace Ildasm
{
flags |= Flags.Caverbal;
}
+ else if (IsIldasmOption(arg, "project"))
+ {
+ flags |= Flags.Project;
+ }
else
{
PrintUsage();
@@ -174,6 +178,7 @@ namespace Ildasm
Console.WriteLine("Usage: ikdasm [options] <file_name> [options]");
Console.WriteLine();
Console.WriteLine("Options:");
+
if (typeof (int).Assembly.GetType ("Mono.Runtime") != null) {
Console.WriteLine (" --out=<file name> Direct output to file rather than stdout.");
Console.WriteLine (" --help Print this help.");
@@ -182,6 +187,7 @@ namespace Ildasm
Console.WriteLine(" /COMPAT=<version> Match ildasm behavior. (<version> = 2.0 | 4.0 | 4.5)");
Console.WriteLine(" /DIFFMODE Remove superficial differences to allow assembly comparisons");
Console.WriteLine(" /CAVERBAL Try to decode custom attribute blobs");
+ Console.WriteLine(" /PROJECT Project WinMD metadata into .NET format");
}
}
}