-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
Is your feature request related to a problem? Please describe.
The -il argument in ILSpyCmd only allows to generate a giant .il file for the entire assembly. This isn't useful because I would rather have one .il file per class, similar to what I would get if I used the -p option which doesn't work with -il.
Describe the solution you'd like
Either have -il work with -p or add a new argument to allow -il to output multiple files.
Additional context
This is mostly useful for when I don't want to load a gigantic .il file to search through, but I also want to export everything because I am sometime interested in names that aren't speakable / compiler generated (meaning they are annoying to use with the -t argument). Having one .il file per class would be a huge improvement in terms of organisation and searching.