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?