mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 06:57:56 +00:00
19 lines
463 B
C#
19 lines
463 B
C#
|
|
namespace qController;
|
|
|
|
public static class MauiProgramExtensions
|
|
{
|
|
public static MauiAppBuilder UseSharedMauiApp(this MauiAppBuilder builder)
|
|
{
|
|
builder
|
|
.UseMauiApp<App>();
|
|
|
|
// TODO: Add the entry points to your Apps here.
|
|
// See also: https://learn.microsoft.com/dotnet/maui/fundamentals/app-lifecycle
|
|
//builder.Services.AddTransient<AppShell, AppShell>();
|
|
|
|
|
|
return builder;
|
|
}
|
|
}
|