I have a problem with NuGet Package of NotificationExtensions because it is running fine on my local desktop computer and in the emulators, but when I deploy to a Windows 10 Mobile Device, I get a FileNotFoundException at runtime telling me that it cannot find "NotificationExtensions.Win10". I tried using the standard package for UWP apps as well as the linked portable class library of this package and nothing is working.
The build and deploy process is fine, there are no related errors except for DEP6721: cannot deploy XAML UI Debugger but I don't think that this is related to the actual problem.
The extension is used within a project that runs as a background task, so its project type is set to "Windows Runtime". Maybe this is what the problem is all about?
The project setup is very simple and only uses 2 classes. TileTemplateManager generates the live tile template with the said extension and the TileUpdater uses the generated templates to initiate a tile update.
Of course, I could just get rid of the extension and write the needed XML code into a string or load it from a file but I am really wondering if anyone knows about this problem and can help me with that?
UPDATE: After switching to the official UWP Toolkit, I get the same FileNotFoundException error with this library :(