mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
24 lines
511 B
C#
24 lines
511 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Observatory
|
|
{
|
|
class ObservatoryCore
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
|
}
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
{
|
|
return AppBuilder.Configure<UI.MainApplication>()
|
|
.UsePlatformDetect()
|
|
.LogToTrace()
|
|
.UseReactiveUI();
|
|
}
|
|
}
|
|
}
|