Files
SilverMetal/windows/welcome/src/SilverOS.Welcome.App/Platforms/iOS/Program.cs
sysadmin 1f8ada3a45 feat(welcome): MAUI Blazor app skeleton + DI wiring
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>
2026-06-09 02:50:42 +01:00

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));
}
}