From Xamarin docs at https://developer.xamarin.com/guides/ios/advanced_topics/native_interop/, it appears the following flags must be specified for the main iOS project:
-cxx -gcc_flags "-L${ProjectDir} -lMylibrary -lSystemLibrary
-framework CFNetwork -force_load ${ProjectDir}/libMyLibrary.a"
However, this article is a bit dated. Is the process still the same for Visual Studio 2015? Where exactly do I specify these flags? Does it go in Project --> Properties --> iOS Build --> Additional mtouch arguments?
Also, Visual Studio has a standard output directory for each project in a solution. How does my library file get copied to $(ProjectDir)? Regards.