auto-creamapi-2/auto-creamapi/App.xaml.cs
Jeddunk 73baa27245 SearchResultView and DownloadView implemented;
Ignore whitespaces and special chars when looking for games;
2020-12-28 15:27:37 +01:00

16 lines
339 B
C#

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