Files

22 lines
323 B
C#
Raw Permalink Normal View History

2024-06-08 00:12:42 -07:00
using Uno.UI.Runtime.Skia;
namespace UnoSample;
public class Program
{
[STAThread]
public static void Main(string[] args)
{
App.InitializeLogging();
2024-06-08 00:12:42 -07:00
var host = SkiaHostBuilder.Create()
.App(() => new App())
.UseX11()
.UseLinuxFrameBuffer()
.UseMacOS()
.UseWindows()
.Build();
2024-06-08 00:12:42 -07:00
host.Run();
}
2024-06-08 00:12:42 -07:00
}