Adds SilverOS.Welcome.App (net9.0-windows10.0.19041.0 only), registers all Core services in MauiProgram.cs, and introduces WizardState scoped service for the wizard host. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
353 B
C#
16 lines
353 B
C#
using ObjCRuntime;
|
|
using UIKit;
|
|
|
|
namespace SilverOS.Welcome.App;
|
|
|
|
public class Program
|
|
{
|
|
// This is the main entry point of the application.
|
|
static void Main(string[] args)
|
|
{
|
|
// if you want to use a different Application Delegate class from "AppDelegate"
|
|
// you can specify it here.
|
|
UIApplication.Main(args, null, typeof(AppDelegate));
|
|
}
|
|
}
|