Browse Source

Add sort custom attributes option to ILSpyCmd

pull/3503/head
unknown 3 weeks ago
parent
commit
9ea0218a10
  1. 4
      ICSharpCode.ILSpyCmd/IlspyCmdProgram.cs

4
ICSharpCode.ILSpyCmd/IlspyCmdProgram.cs

@ -113,6 +113,9 @@ Examples:
[Option("--no-dead-stores", "Remove dead stores.", CommandOptionType.NoValue)]
public bool RemoveDeadStores { get; }
[Option("--sort-attributes", "Sort custom attributes.", CommandOptionType.NoValue)]
public bool SortCustomAttributes { get; }
[Option("-d|--dump-package", "Dump package assemblies into a folder. This requires the output directory option.", CommandOptionType.NoValue)]
public bool DumpPackageFlag { get; }
@ -331,6 +334,7 @@ Examples:
RemoveDeadStores = RemoveDeadStores,
UseSdkStyleProjectFormat = WholeProjectDecompiler.CanUseSdkStyleProjectFormat(module),
UseNestedDirectoriesForNamespaces = NestedDirectories,
SortCustomAttributes = SortCustomAttributes
};
}

Loading…
Cancel
Save