I put all of my application pages into a folder “Pages” and my application broke down. It hits both of the following lines in App.xaml.cs and except this it doesn’t print any errors.
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
...
private void Application_UnhandledException(object sender, applicationUnhandledExceptionEventArgs e)
How can I fix it?
In your WMAppManifest.xml you’ll find the following:
Change the NavigationPage value to “/Pages/MainPage.xaml” and everything should work good.
Hope this helps!