> Linking SDK only for assembly > /Users/cdodge/dev/Currents/MyApp/MyApp.App.Touch/bin/iPhone/Release/MyAppMobileAppTouch.exe > into > /Users/cdodge/dev/Currents/MyApp/MyApp.App.Touch/bin/iPhone/Release/MyAppAppTouch.app > error MT2002: Can not resolve reference: System.Void > System.Security.SecurityRulesAttribute::.ctor(System.Security.SecurityRuleSet)
This type [1] does not exists in MonoTouch version of mscorlib.dll. This means that one, or more, of your assemblies were built using a different framework and include references to types that are not part of MonoTouch BCL (superset of Silverlight). The linker cannot find where the type is and report this "resolve" error. The solution is to ensure all your code is built against the MonoTouch supplied BCL. Sebastien [1] http://msdn.microsoft.com/en-us/library/system.security.securityrulesattribute.aspx [2] likely .NET 4.0 since the above type did not exists in earlier frameworks either _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
