Joy Rex
Joy Rex

Reputation: 618

Assembly generation failed - does not have a strong name

Im getting the following error in the Portable Class Library (PCL) in Xamarin, how to resolve this,?

Assembly generation failed -- Referenced assembly 'Xamarin.Forms.Core' does not have a strong name

Upvotes: 2

Views: 624

Answers (1)

Stephane Delcroix
Stephane Delcroix

Reputation: 16230

Xamarin.Forms assemblies distributed through nuget.org are not strong-signed.

You're trying to strong-sign your application assembly, and this require all dependencies to be strong-signed too. That's the problem you're seeing.

IMHO, strong-signing application adds none to very little value in mobile, esp on Android and iOS.

Upvotes: 4

Related Questions