I am building a ASP.NET MVC 5 web app that utilizes SignalR for the communication stack abstraction.
Everything works fine until I add a custom DLL that implements a real-time message bus. Part of the message bus process requires xml files (properly copied to bin deploy folder).
When trying to run the Web project (locally using IISExpress) I am getting a "Could not load file or assembly 'MSG_BUS.DLL' or one of its dependencies" ... everything works fine when running from a console project which makes me think its on the ASP.NET MVC part
Any idea how to troubleshoot or resolve this issue? I suspect it has something to do with the XML files - but have no clue how to resolve it
UPDATE I should have mentioned the native part of my dependant DLL, this helped me move forward: Native Assembly Binding fails for ASP.NET solution