inraetemplate / INRAETemplate / Platforms / Tizen / Main.cs @ fa2aa88f
Historique | Voir | Annoter | Télécharger (305 octets)
1 | fa2aa88f | ajournaux | using System; |
---|---|---|---|
2 | using Microsoft.Maui; |
||
3 | using Microsoft.Maui.Hosting; |
||
4 | |||
5 | namespace INRAETemplate; |
||
6 | |||
7 | 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 | } |