You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
292 B

  1. using System;
  2. using Microsoft.Maui;
  3. using Microsoft.Maui.Hosting;
  4. namespace CircleViewerMaui;
  5. class Program : MauiApplication
  6. {
  7. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  8. static void Main(string[] args)
  9. {
  10. var app = new Program();
  11. app.Run(args);
  12. }
  13. }