Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a strong name / signature to an outside DLL?

We're signing our library but one of our external dependencies is itself not signed, giving us the following error:

Referenced assembly 'ManyConsole' does not have a strong name

We get the ManyConsole package (a great one BTW!) via Nuget but are ok with a non-Nuget orphan that is signed by us. In fact, we could very well sign it with the same key as our own app but it's not clear how we can sign an "outside" DLL.

like image 867
DeepSpace101 Avatar asked Sep 20 '13 01:09

DeepSpace101


1 Answers

You could either:

  • Load the assembly dynamically
  • Sign the third-party assembly
like image 117
Carbine Avatar answered Oct 20 '22 07:10

Carbine