Kev
Kev

Reputation: 119806

Is it possible to modify assembly manifests other than by ILDASM/ILASM hacking?

We have a customer who have two .NET assemblies, A and B:

I want to modify assembly A and change the manifest so that instead of referencing a signed version of B, it references an unsigned version.

I know it's possible using ILDASM to dump the IL, edit the references then recreate using ILASM, but is there a better way?

Upvotes: 3

Views: 1870

Answers (1)

Kev
Kev

Reputation: 119806

It's seems that decompiling with ILDASM, editing the resulting IL and recompiling with ILASM was the path of least resistance.

Upvotes: 1

Related Questions