41 lines
1000 B
C#
41 lines
1000 B
C#
|
|
using Avalonia;
|
||
|
|
using Avalonia.ReactiveUI;
|
||
|
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
using Serilog;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace OTSSignsOrchestrator.Desktop;
|
||
|
|
|
||
|
|
sealed class Program
|
||
|
|
{
|
||
|
|
[STAThread]
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
Log.Logger = new LoggerConfiguration()
|
||
|
|
.MinimumLevel.Debug()
|
||
|
|
.WriteTo.Console()
|
||
|
|
.WriteTo.File("logs/app-.log", rollingInterval: RollingInterval.Day, retainedFileCountLimit: 7)
|
||
|
|
.CreateLogger();
|
||
|
|
|
||
|
|
try
|
||
|
|
{
|
||
|
|
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
||
|
|
}
|
||
|
|
catch (Exception ex)
|
||
|
|
{
|
||
|
|
Log.Fatal(ex, "Application terminated unexpectedly");
|
||
|
|
}
|
||
|
|
finally
|
||
|
|
{
|
||
|
|
Log.CloseAndFlush();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public static AppBuilder BuildAvaloniaApp()
|
||
|
|
=> AppBuilder.Configure<App>()
|
||
|
|
.UsePlatformDetect()
|
||
|
|
.WithInterFont()
|
||
|
|
.LogToTrace()
|
||
|
|
.UseReactiveUI();
|
||
|
|
}
|