2021-01-08 18:36:57 +01:00
|
|
|
|
using MvvmCross.Core;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Core;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Views;
|
|
|
|
|
|
|
|
|
|
namespace GoldbergGUI.WPF
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for App.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App : MvxApplication
|
|
|
|
|
{
|
|
|
|
|
public App()
|
|
|
|
|
{
|
2021-01-14 19:38:31 +01:00
|
|
|
|
this.RegisterSetupType<Setup>();
|
2021-01-08 18:36:57 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|