是否存在与ilmerge相反的实用程序?

时间:2021-12-15 20:17:56

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.

我想使用命令行或GUI从程序集中删除代码。有些时候程序集包含其他程序集中的类型,这要求您为代码添加外部别名(这不是什么大不了的事)。另一种方法是从源代码(如果可用)重新编译成单独的程序集或以某种方式剥离程序集代码,并在“main”程序集中添加引用。

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

我想我正在寻找ilunmerge。有谁知道这样的实用程序?

1 个解决方案

#1


1  

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

Reflector是另一种可以让你拆卸二进制文件的工具。

#1


1  

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

Reflector是另一种可以让你拆卸二进制文件的工具。