Selector/Selector.MAUI/Platforms/MacCatalyst/AppDelegate.cs

11 lines
208 B
C#
Raw Normal View History

2023-01-21 16:55:51 +00:00
using Foundation;
namespace Selector.MAUI;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}