10 lines
241 B
C#
10 lines
241 B
C#
using Foundation;
|
|
using MauiApp;
|
|
|
|
namespace MauiApp;
|
|
|
|
[Register("AppDelegate")]
|
|
public class AppDelegate : MauiUIApplicationDelegate
|
|
{
|
|
protected override Microsoft.Maui.Hosting.MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
} |