13 lines
227 B
C#
13 lines
227 B
C#
|
|
using Microsoft.Maui.Platform.Linux.Hosting;
|
||
|
|
|
||
|
|
namespace ShellDemo;
|
||
|
|
|
||
|
|
public class Program
|
||
|
|
{
|
||
|
|
[STAThread]
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
LinuxProgramHost.Run(args, MauiProgram.CreateMauiApp);
|
||
|
|
}
|
||
|
|
}
|