- init: initial think

This commit is contained in:
2024-12-18 12:37:00 +03:00
commit bb8997938d
24 changed files with 416 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using Avalonia;
using System;
using Avalonia.ReactiveUI;
namespace Nebula.Launcher;
sealed class Program
{
// Initialization code. Don't use any Avalonia, third-party APIs or any
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
// yet and stuff might break.
[STAThread]
public static void Main(string[] args) => BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.WithInterFont()
.UseReactiveUI()
.LogToTrace();
}