I have imported a third party .net library into my Mono for Android project that uses the DataSetExtension library. When I try to compile I get the following errormessage:
Error 51 Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Perhaps it doesn't exist in the Mono for Android profile? File name: 'System.Data.DataSetExtensions.dll' at Monodroid.Tuner.MonoDroidResolver.Resolve(AssemblyNameReference reference, ReaderParameters parameters) at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(List`1 assemblies, AssemblyDefinition assembly)
To resolve this issue I can add the .net System.Data.DataSetExtensions from the GAC, and set it to copy local. However, does anyone have a clue if it would work when I deploy to the device?