18 lines
373 B
C#
18 lines
373 B
C#
|
using MvvmCross.Core;
|
|||
|
using MvvmCross.Platforms.Wpf.Core;
|
|||
|
using MvvmCross.Platforms.Wpf.Views;
|
|||
|
|
|||
|
namespace auto_creamapi
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for App.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class App
|
|||
|
{
|
|||
|
protected override void RegisterSetup()
|
|||
|
{
|
|||
|
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|