2013-10-29, 02:04 AM
I've got an nDroid support puzzle - I've an idea of what's going on but no idea what would cause it.
I've a handler in the main service for locating / loading 3rd-party assemblies......it should normally only fire when looking for things like the SQLite dll etc. but in this case it's firing when trying to locate native .NET System assemblies.
The thread is http://forums.nextpvr.com/showthread.php...ll-problem and from the logs I see......I'm guessing from the "Culture=nl-NL" part of the args passed in to the handler that it's looking for locale-specific versions of the System dlls but I've never seen that before and can't think what might be causing it.
Anybody any ideas?
Cheers,
Brian
I've a handler in the main service for locating / loading 3rd-party assemblies...
Code:
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(ResolveAssemblyEventHandler);
The thread is http://forums.nextpvr.com/showthread.php...ll-problem and from the logs I see...
Code:
26-10-2013 21:53:31.177 ResolveAssemblyEventHandler() called.
26-10-2013 21:53:31.177 args.Name: System.ServiceProcess.resources, Version=4.0.0.0, Culture=nl-NL, PublicKeyToken=b03f5f7f11d50a3a
26-10-2013 21:53:31.177 Attempting to find assembly: System.ServiceProcess.resources.dll
26-10-2013 21:53:31.193 ResolveAssemblyEventHandler() called.
26-10-2013 21:53:31.193 args.Name: mscorlib.resources, Version=4.0.0.0, Culture=nl-NL, PublicKeyToken=b77a5c561934e089
Anybody any ideas?
Cheers,
Brian