mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
33 lines
869 B
C#
33 lines
869 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.ReactiveUI;
|
|
using CefNet;
|
|
|
|
namespace Wabbajack.App;
|
|
|
|
internal 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()
|
|
.StartWithCefNetApplicationLifetime(args);
|
|
}
|
|
|
|
// Avalonia configuration, don't remove; also used by visual designer.
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
{
|
|
return AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.AfterSetup(AfterSetupCallback)
|
|
.LogToTrace()
|
|
.UseReactiveUI();
|
|
}
|
|
|
|
private static void AfterSetupCallback(AppBuilder obj)
|
|
{
|
|
}
|
|
} |