19 lines
465 B
C#
19 lines
465 B
C#
using System;
|
|
using Avalonia;
|
|
|
|
namespace Minint;
|
|
|
|
sealed class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
=> BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.WithInterFont()
|
|
.LogToTrace()
|
|
.With(new X11PlatformOptions { OverlayPopups = true });
|
|
}
|