2020-12-25 16:49:51 +01:00
|
|
|
|
using MvvmCross.Core;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Core;
|
|
|
|
|
|
|
|
|
|
namespace auto_creamapi
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-12-28 15:27:37 +01:00
|
|
|
|
/// Interaction logic for App.xaml
|
2020-12-25 16:49:51 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App
|
|
|
|
|
{
|
|
|
|
|
protected override void RegisterSetup()
|
|
|
|
|
{
|
2023-12-23 22:55:26 +01:00
|
|
|
|
this.RegisterSetupType<Setup>();
|
2020-12-25 16:49:51 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-28 15:27:37 +01:00
|
|
|
|
}
|