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

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can use corflags for this. Specifically the /32BIT+ option. Note the caveats regarding strong named assemblies if applicable.

link|improve this answer
Perfect! I'll give that a try. – Ray Booysen Jan 23 '11 at 21:29
feedback

Your Answer

 
or
required, but never shown

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