mirror of
https://github.com/GalaxyViewer/GalaxyViewer.git
synced 2026-08-14 09:02:08 +00:00
19 lines
494 B
C#
19 lines
494 B
C#
using System.Runtime.Versioning;
|
|
using System.Threading.Tasks;
|
|
using Avalonia;
|
|
using Avalonia.Browser;
|
|
using Avalonia.ReactiveUI;
|
|
using GalaxyViewer;
|
|
|
|
[assembly: SupportedOSPlatform("browser")]
|
|
|
|
internal sealed partial class Program
|
|
{
|
|
private static Task Main(string[] args) => BuildAvaloniaApp()
|
|
.WithInterFont()
|
|
.UseReactiveUI()
|
|
.StartBrowserAppAsync("out");
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>();
|
|
} |