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

Asked

Viewed 225 times

-2

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

  • 2

    Hi Rafael, welcome to Stackoverflow in English, add more details to your question by clicking the button edit just below it, as an excerpt from the code where the error occurs, or important information that helps us to help you, before posting any code remove confidential information. I suggest you make a Tour to know more about the site.

1 answer

0

The Assembly you’re trying to compile seems to have a strong assinature, probably to ensure its authenticity.

Consequently, all libraries imported into the project must also have a subscription. It seems to me you’re trying to import an unsigned library.

You have several solutions:

  • Ask the author of the library to sign Assembly
  • If the bilbioteca is open-source, you can get the source code, sign it, and import that custom signed version
  • Disable your Assembly signature

Browser other questions tagged

You are not signed in. Login or sign up in order to post.