I’ve created WP8 C# project, added few native projects to solution – COM dlls, and now I want to add references to those dlls in C# project, in order to use them, but can’t do that – getting
A reference to higher version or incompatible assembly cannot be added to the project
How this can be fixed? What I’m doing wrong?
You can’t directly add COM libraries to a Windows Phone 8 project. You’ll have to use a WinRT wrapper, or better, rewrite the entire COM part in WinRT.