Strong Signing, and Updating A Referencing Assembly
Posted
by Alan
on Stack Overflow
See other posts from Stack Overflow
or by Alan
Published on 2010-05-11T19:22:36Z
Indexed on
2010/05/11
19:34 UTC
Read the original article
Hit count: 348
Hi,
I have two, third party assemblies:
Foo.dll
and
ReferencesFoo.dll
As noted, ReferencesFoo.dll
is an assembly that has a reference to Foo.dll
For my application, I need to resign these assemblies. I use ildasm/ilasm in combination along with a signing key to resign them, however, ReferencesFoo.dll
still contains (in it's manifest?) the reference to the Foo.dll
old public key and public key token.
So, how do I sign both dll's with my key, and update the references in ReferencesFoo.dll
without getting the source code and recompiling?
© Stack Overflow or respective owner