mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2026-02-23 15:34:14 +01:00
10 lines
209 B
C#
10 lines
209 B
C#
using Foundation;
|
|
|
|
namespace BlazorHybridApp;
|
|
|
|
[Register("AppDelegate")]
|
|
public class AppDelegate : MauiUIApplicationDelegate
|
|
{
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
}
|