Statistiques
| Branche: | Révision:

sicpaconnexions / SICPA_Connexions / Platforms / Tizen / Main.cs @ 87e7d061

Historique | Voir | Annoter | Télécharger (380 octets)

1
using Microsoft.Maui;
2
using Microsoft.Maui.Hosting;
3
using System;
4

    
5
namespace SICPA_Connexions
6
{
7
    internal class Program : MauiApplication
8
    {
9
        protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
10

    
11
        static void Main(string[] args)
12
        {
13
            var app = new Program();
14
            app.Run(args);
15
        }
16
    }
17
}