You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
6
external/ikdasm/Program.cs
vendored
6
external/ikdasm/Program.cs
vendored
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user