18 lines
355 B
C#
Raw Normal View History

2025-02-28 09:09:55 +03:00
using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace MauiApp1
{
internal class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}