I'm trying to sign a .net assembly with Visual Studio (2010). On the properties page for the project, I selected the Signing tab, and checked "sign the assembly" and provided a strong name key file.
The problem is that this project references another -- unmanaged project. When I try to build the .net assembly, I get the message: "Assembly generation failed -- Referenced assembly 'otherAssemblyName' does not have a strong name.
Since the other assembly/project is unmanaged, I don't believe that it is possible to sign it, and so I don't know what to do next.
I need to sign my .net assembly because it will be used by another signed assembly.
Thanks in advance...