.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Christoph Wille 939832866f Update frontends for 5.0 RTM 6 years ago
..
ICSharpCode.Decompiler.Console.csproj Update frontends for 5.0 RTM 6 years ago
IlspyCmdProgram.cs Fix #1431: Add -r|-referencepath option 6 years ago
ProgramExitCodes.cs Switch ilspycmd to attribute usage (from builder) 6 years ago
README.md Remove outdated information (basically pre-dotnet-tool build information) 6 years ago
TypesParser.cs Switch ilspycmd to attribute usage (from builder) 6 years ago
ValidationAttributes.cs Switch ilspycmd to attribute usage (from builder) 6 years ago

README.md

ilspycmd

dotnet tool install ilspycmd -g

.NET Core 2.1 Tool

ilspycmd -h

dotnet tool for decompiling .NET assemblies and generating portable PDBs

Usage: ilspycmd [arguments] [options]

Arguments:
  Assembly file name          The assembly that is being decompiled. This argument is mandatory.

Options:
  -h|--help                   Show help information
  -o|--outputdir <directory>  The output directory, if omitted decompiler output is written to standard out.
  -p|--project                Decompile assembly as compilable project. This requires the output directory option.
  -t|--type <type-name>       The fully qualified name of the type to decompile.
  -il|--ilcode                Show IL code.
  -d|--debuginfo              Generate PDB.
  -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)
  -v|--version                Show version of ICSharpCode.Decompiler used.

Remarks:
  -o is valid with every option and required when using -p.