forked from amkovkov/GranuSightSoftware2
26 lines
589 B
C#
26 lines
589 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging.Console;
|
|
using GSS2.Core;
|
|
using GSS2.Core.Analysis.AmineContent.Database;
|
|
|
|
using Avalonia;
|
|
|
|
namespace GSS2.Test;
|
|
|
|
public class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
BuildAvaloniaApp()
|
|
.UseStandardRuntimePlatformSubsystem()
|
|
.StartWithClassicDesktopLifetime(args);
|
|
}
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.WithInterFont()
|
|
.LogToTrace();
|
|
}
|