20 lines
443 B
C#
20 lines
443 B
C#
|
|
using Avalonia;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace UnifiedFarmLauncher
|
||
|
|
{
|
||
|
|
internal class Program
|
||
|
|
{
|
||
|
|
[STAThread]
|
||
|
|
public static void Main(string[] args) => BuildAvaloniaApp()
|
||
|
|
.StartWithClassicDesktopLifetime(args);
|
||
|
|
|
||
|
|
public static AppBuilder BuildAvaloniaApp()
|
||
|
|
=> AppBuilder.Configure<App>()
|
||
|
|
.UsePlatformDetect()
|
||
|
|
.WithInterFont()
|
||
|
|
.LogToTrace();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|