Files
finder2e_foundry_converter/Program.cs
T

21 lines
475 B
C#
Raw Normal View History

2026-06-08 10:39:11 -05:00
using Avalonia;
using System;
2026-06-08 15:18:19 -05:00
namespace finder2e_foundry_converter;
2026-06-08 10:39:11 -05:00
sealed class Program
{
[STAThread]
public static void Main(string[] args) => BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
#if DEBUG
.WithDeveloperTools()
#endif
.WithInterFont()
.LogToTrace();
}