GoldbergGUI/GoldbergGUI.WPF/App.xaml.cs

16 lines
316 B
C#
Raw Normal View History

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