auto-creamapi-2/auto-creamapi/App.xaml.cs
2023-12-23 20:51:30 +01:00

16 lines
351 B
C#

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()
{
this.RegisterSetupType<MvxWpfSetup<Core.MainApplication>>();
}
}
}