2020-12-25 10:49:51 -05:00
|
|
|
|
using MvvmCross.Core;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Core;
|
|
|
|
|
|
|
|
|
|
namespace auto_creamapi
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-12-28 09:27:37 -05:00
|
|
|
|
/// Interaction logic for App.xaml
|
2020-12-25 10:49:51 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App
|
|
|
|
|
{
|
|
|
|
|
protected override void RegisterSetup()
|
|
|
|
|
{
|
|
|
|
|
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-28 09:27:37 -05:00
|
|
|
|
}
|