是否有一个实用程序可以与 ilmerge 相反?
我想使用命令行或 GUI 从程序集中删除代码。有时,程序集包含其他程序集中的类型,这需要您将外部别名添加到代码中(这没什么大不了的)。另一种方法是从源代码(如果可用)重新编译为单独的程序集,或以某种方式剥离程序集的代码,并在“主”程序集中添加回引用。
我想我正在寻找 ilunmerge。有谁知道这样的实用程序吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Reflector 是另一个可以让您反汇编二进制文件的工具。
Reflector is another tool that will let you disassemble your binaries.