Updating the App.xaml.cs and the App.xaml
using MvvmCross.Platforms.Uap.Core;
using MvvmCross.Platforms.Uap.Views;
namespace MvvmCrossDemo.Uwp
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
sealed partial class App
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
this.InitializeComponent();
}
}
public abstract class UWPApplication : MvxApplication<MvxWindowsSetup<Core.App>, Core.App>
{
}
}Last updated