auto-creamapi-2/auto-creamapi/App.xaml.cs

16 lines
351 B
C#
Raw Normal View History

using MvvmCross.Core;
using MvvmCross.Platforms.Wpf.Core;
namespace auto_creamapi
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App
{
protected override void RegisterSetup()
{
2023-12-23 14:51:30 -05:00
this.RegisterSetupType<MvxWpfSetup<Core.MainApplication>>();
}
}
}