When I start the UWP project I'm working on, I get the following dialog box.
"Failed to activate the Windows Store application" MyAppsMangledName ". The process" MyExeName "started, but the activation request failed with the error" The application did not start. "
Visual Studio output has the following.
Stream 0x3d4c exited with code -1073741515 (0xc0000135). Stream 0x3b50 exited with code -1073741515 (0xc0000135). The program "MyExeName" came out with the code -1073741515 (0xc0000135) "Dependent dll was not found."
Event Viewer has 3 events that basically repeat the popup dialog in three different ways and no more.
The process monitor at startup indicates that many DLLs have loaded successfully, but nothing indicates failure, except for some NAMENOTFOUND events, which, unfortunately, do not show which name was not found.
In Win32, a useful dialog usually indicates which DLL cannot be loaded. And, of course, with .Net applications, merge logs make tracing very straightforward. But for Store / UWP applications, I cannot find a good way to track the dependent dependency.
dll visual-c ++ native windows-store-apps win-universal-app
DubiousPusher
source share