改变现有DLL的平台
我有一个为“任何 CPU”构建的第三个 DLL。它需要(由于特定原因)针对 x86 进行重建。我无法访问现有的源代码,但可以通过 Reflector 自己对其进行反编译和重新编译。
有没有另一种方法可以在不采用反射器路径的情况下做到这一点
I have a 3rd DLL that is built for "Any CPU". It needs (for a specific reason) to be rebuilt for x86. I have no access to the existing source code, but could via Reflector, decompile and recompile it myself.
Is there another way to do this without taking the Reflector path
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
corflags
为此。特别是/32BIT+
选项。请注意有关强命名程序集的警告(如果适用)。You can use
corflags
for this. Specifically the/32BIT+
option. Note the caveats regarding strong named assemblies if applicable.