20 lines
382 B
C#

using Uno.UI.Runtime.Skia;
namespace FrontendPlaformUno;
public class Program
{
[STAThread]
public static void Main(string[] args)
{
var host = SkiaHostBuilder.Create()
.App(() => new App())
.UseX11()
.UseLinuxFrameBuffer()
.UseMacOS()
.UseWindows()
.Build();
host.Run();
}
}