2021-01-08 12:36:57 -05:00
|
|
|
|
using MvvmCross.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 13:38:31 -05:00
|
|
|
|
this.RegisterSetupType<Setup>();
|
2021-01-08 12:36:57 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|