vote up 0 vote down star

In .NET, is there a tool or some other method which would allow us to modify an assembly's manifest, without having to modify the AssemblyInfo and re-build the assembly?

Thanks

flag

60% accept rate

3 Answers

vote up 0 vote down

You could use the IL disassembler/assembler tools as described here:

Editing an assembly's manifest and more...

link|flag
vote up 1 vote down

You can use a binary editor to modify the manifest. I've used UltraEdit to open dlls and modify the manifest. It is a plain text section of the PE file - usually located near the end of the file.

Also, you typically can not use this method to add to the assembly. It is safe for changing bytes but not adding or removing. The equivalent of removing bytes from the assembly would be to replace characters with the space character - so that the total number of bytes is unchanged.

link|flag
but remember if it is a signed assembly, it will have to be re-signed somehow, which is out of the scope of this question. – Rick Ratayczak Jul 14 at 2:04
vote up 0 vote down

You can use MT.exe. It ships with the SDK. There is a good explanation of how to use it here.

link|flag

Your Answer

Get an OpenID
or

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