begin application build overhaul
This commit is contained in:
19
Program.cs
Normal file
19
Program.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user