Files
TaskHybrid/Template.Maui/Platforms/MacCatalyst/AppDelegate.cs
2024-10-11 11:06:37 +02:00

12 lines
250 B
C#

using Foundation;
using Template.Maui;
namespace Template.Maui
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}