mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +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();
|
|
}
|