Xamarin: Failed to allow assembly: System.Security

When I try to deploy the iOS application, I get the following error: MT2002 error: assembly failed: "System.Security, Version = 2.0.0.0, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a"

There are no other links in the project other than those included in the HelloWorld application (monotouch, System, System.Core and System.Xml)

The design is always successful.

How to solve this?

+4
source share
1 answer

System.Security.dllis not an assembly that Xamarin.iOS sends. The version number is also invalid. This usually happens when adding a link to code that was not created using the Xamarin.iOS (or PCL) assemblers.

IOW - ( monotouch, System, System.Core System.Xml_, - , Xamarin.iOS(, , MS.NET).

?

, Xamarin.iOS .

+2

Source: https://habr.com/ru/post/1530635/


All Articles