mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-11 18:34:03 +00:00
initial working maui migration with android only
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user