I am a new in developing Metro application. And I have a question regarding external DLL for Metro.
As I understand project which implemented DLL(extension) should be include in solution for Metro application. And I should specify dependency into Package.appxmanifest. Only after that action I can use this extension in my Metro application.
But what about external DLL(extension)?
How to use DLL installed on system (something like load library for Desktop)?
Could somebody clarify this issue?
Thanks in advance.
A Windows Store App is sand boxed and can’t access any system DLLs, or DLLs other than the ones provided in your project.
Also DLLs referenced by your project need to be WinRT DLLs built specially for WinRT.