29 lines
847 B
C#
29 lines
847 B
C#
|
using System;
|
|||
|
using Avalonia;
|
|||
|
using Avalonia.ReactiveUI;
|
|||
|
|
|||
|
namespace Tesses.CMS.Avalonia.Desktop;
|
|||
|
|
|||
|
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) {
|
|||
|
App.Platform = new DesktopPlatform();
|
|||
|
|
|||
|
|
|||
|
BuildAvaloniaApp()
|
|||
|
.StartWithClassicDesktopLifetime(args);
|
|||
|
}
|
|||
|
|
|||
|
// Avalonia configuration, don't remove; also used by visual designer.
|
|||
|
public static AppBuilder BuildAvaloniaApp()
|
|||
|
=> AppBuilder.Configure<App>()
|
|||
|
.UsePlatformDetect()
|
|||
|
.WithInterFont()
|
|||
|
.LogToTrace()
|
|||
|
.UseReactiveUI();
|
|||
|
}
|