I'm trying to sign a set of DLLs through this process:
ildasm
the original DLL to ILilasm
(and Strong Naming) the IL back to DLL
Each of the DLLs, seen thorugh Visual Studio Object Browser, is correct, but if a rebuilt DLL refers to an object in another rebuilt DLL (e.g. extending an object defined in it), then the reference cannot be resolved. References to System assemblies are correctly resolved.
Can someone tell me why?
I'm using .Net SDK v2 with x86 architecture.