Hey Dario, On 6/13/07, Dario Quintana <[EMAIL PROTECTED]> wrote: > I'm tempting using linker, the process of linker works fine, but I > have the next error with the resultant assemblies when I try to run > the app.exe > > System.IO.FileLoadException: Could not load file or assembly > 'Castle.Core, Version=1.0.0.0, Culture=neutral, > PublicKeyToken=407dd0808d44fbdc' or one of its dependencies. Strong > name validation failed. (Exception from HRESULT: 0x8013141A)
It looks like before linking, the assembly Castle.Core was strongly signed. As Cecil, and thus the linker, can not know the private key used to sign Castle.Core, you will have to sign it after linking. This is done with the command sn -R. -- Jb --~--~---------~--~----~------------~-------~--~----~ -- mono-cecil -~----------~----~----~----~------~----~------~--~---
