I would like to strip code from an assembly using a command-line or GUI. There are times when assemblies contain types that are in other assemblies and this requires you to add extern alias to your code (which isn't that big of a deal). The alternative is recompilation from source (if available) into separate assemblies or stripping code the assembly in some way, and adding back references in the "main" assembly.

I guess I'm looking for ilunmerge. Does anyone know of such a utility?

link|improve this question

I do not know of any, but it should be easy-peasy to write one yourself. – Boo Dec 14 '10 at 21:53
1  
I am intrigued to know why you would often need to shred and reassemble assemblies. Just curious. – chibacity Dec 14 '10 at 21:58
This wouldn't be often. In fact because it's not often is why I was hoping something was out there. The case I'm looking at is removing Castle from Rhino Mocks 3.6 (Rhino Mocks 3.5 comes with Castle in or out). For now, I've recompiled Rhino from source which produces the Castle-less version. – Kit Dec 14 '10 at 22:13
1  
Why would you want to manipulate the assembly directly if you can recompile from source? – CodeInChaos Dec 14 '10 at 22:17
I was trying to be lazy. I ended up with the source route. Of course if anyone needs this capability with no source available, then I guess that means one of the manual methods below :) – Kit Dec 15 '10 at 3:21
feedback

1 Answer

Reflector is another tool that will let you disassemble your binaries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.