Browse Source

ilspycmd nested directories decompiler setting

New flag in ilspycmd that allows to use the decompiler setting UseNestedDirectoriesForNamespaces
pull/2636/head
GreyXor 3 years ago committed by GitHub
parent
commit
7ae31fa7f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

4
ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

@ -89,6 +89,9 @@ Remarks: @@ -89,6 +89,9 @@ Remarks:
[Option("-d|--dump-package", "Dump package assembiles into a folder. This requires the output directory option.", CommandOptionType.NoValue)]
public bool DumpPackageFlag { get; }
[Option("--nested-directories", "Use nested directories for namespaces.", CommandOptionType.NoValue)]
public bool NestedDirectories { get; }
private int OnExecute(CommandLineApplication app)
{
TextWriter output = System.Console.Out;
@ -171,6 +174,7 @@ Remarks: @@ -171,6 +174,7 @@ Remarks:
RemoveDeadCode = RemoveDeadCode,
RemoveDeadStores = RemoveDeadStores,
UseSdkStyleProjectFormat = WholeProjectDecompiler.CanUseSdkStyleProjectFormat(module),
UseNestedDirectoriesForNamespaces = NestedDirectories,
};
}

Loading…
Cancel
Save