I want make a c# Library (library scope is communication with Google contact api) with dependency embedded in library.
So, in my class constructor i put this code:
AppDomain.CurrentDomain.AssemblyResolve += (sender, evento) =>
{
var assemblyName = evento.Name.Split(',')[0].Trim();
if (assemblyName.ToLower().Equals("google.gdata.contacts"))
return Assembly.Load(Assembly.GetExecutingAssembly().GetEmbeddedResource("Contacts.Assembly.Google.GData.Contacts.dll"));
else if (assemblyName.ToLower().Equals("google.gdata.client"))
return Assembly.Load(Assembly.GetExecutingAssembly().GetEmbeddedResource("Contacts.Assembly.Google.GData.Client.dll"));
else if (assemblyName.ToLower().Equals("google.gdata.extensions"))
return Assembly.Load(Assembly.GetExecutingAssembly().GetEmbeddedResource("Contacts.Assembly.Google.GData.Extensions.dll"));
else if (assemblyName.ToLower().Equals("newtonsoft.json"))
return Assembly.Load(Assembly.GetExecutingAssembly().GetEmbeddedResource("Contacts.Assembly.Newtonsoft.Json.dll"));
return null;
};
In this way, when AppDomain try to resolve Google contact library or its dependency i return my embedded assembly. This WORK!!!
My problem is when i call this code:
RequestSettings settings = new RequestSettings("ApplicationName");
ContactsRequest cr = new ContactsRequest(settings);
Feed<Google.Contacts.Contact> f = cr.GetContacts();
This code same work for RequestSettings (this class is in google.data.client.dll) but when try to create ContactRequest instance (this class is in google.data.contacts.dll) it raise "MissingMethodException".
Why code return this error?
Check your google.data.contacts.dll: probably it depends on another dll you are not including (e.g. log4net).
Check also your inner exception, it should include details on it.