Browse Source

Merge pull request #1143 from 0xced/fully-qualified-name

Use "fully qualified name" instead of "FQN" abbreviation
pull/1167/head
Siegfried Pammer 7 years ago committed by GitHub
parent
commit
13e6d72308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ICSharpCode.Decompiler.Console/Program.cs
  2. 2
      ICSharpCode.Decompiler.Console/README.md

2
ICSharpCode.Decompiler.Console/Program.cs

@ -22,7 +22,7 @@ namespace ICSharpCode.Decompiler.Console @@ -22,7 +22,7 @@ namespace ICSharpCode.Decompiler.Console
var inputAssemblyFileName = app.Argument("Assembly filename name", "The assembly that is being decompiled. This argument is mandatory.");
var projectOption = app.Option("-p|--project", "Decompile assembly as compilable project. This requires the output directory option.", CommandOptionType.NoValue);
var outputOption = app.Option("-o|--outputdir <directory>", "The output directory, if omitted decompiler output is written to standard out.", CommandOptionType.SingleValue);
var typeOption = app.Option("-t|--type <type-name>", "The FQN of the type to decompile.", CommandOptionType.SingleValue);
var typeOption = app.Option("-t|--type <type-name>", "The fully qualified name of the type to decompile.", CommandOptionType.SingleValue);
var listOption = app.Option("-l|--list <entity-type(s)>", "Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), d(elegate), e(num)", CommandOptionType.MultipleValue);
app.ExtendedHelpText = Environment.NewLine + "-o is valid with every option and required when using -p.";

2
ICSharpCode.Decompiler.Console/README.md

@ -13,7 +13,7 @@ Options: @@ -13,7 +13,7 @@ Options:
-h|--help Show help information
-p|--project Decompile assembly as compilable project. This requires the output directory option.
-o|--outputdir <directory> The output directory, if omitted decompiler output is written to standard out.
-t|--type <type-name> The FQN of the type to decompile.
-t|--type <type-name> The fully qualified name of the type to decompile.
-l|--list <entity-type(s)> Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct),
d(elegate), e(num)

Loading…
Cancel
Save