I have two, third-party builds:
Foo.dll
and
ReferencesFoo.dll
As noted, ReferencesFoo.dllis an assembly that has a link toFoo.dll
For my application, I need to undo these assemblies. I use ildasm / ilasm in combination with the signature key to resign, however ReferencesFoo.dllit still contains (in it a manifest?) A reference to the old public key Foo.dlland the public key token.
So, how do I sign both dll libraries with my key and update the links in ReferencesFoo.dllwithout getting the source code and recompiling?
source
share