Error compiling: Error 4 The assembly [...] must contain a strong signature to be marked as a prerequisite

-2

Error 4 The assembly '......' must contain a strong signature to be marked as a prerequisite.

    
asked by anonymous 20.07.2015 / 14:27

1 answer

0

The assembly you are trying to compile seems to have a assinature strong , probably to ensure its authenticity.

Consequently, all libraries imported by the project also have to have a signature. It looks like you're trying to import an unsigned library.

You have several solutions:

  • Ask the author of the library to sign the assembly
  • If the library is open-source, you can get the source code, sign it, and import this custom version with signature
  • Disable your assembly signature
20.07.2015 / 15:03