using Avalonia; using MsBox.Avalonia; using System; using System.Threading.Tasks; namespace Sheas_Cealer_Nix; internal sealed class Program { [STAThread] public static async Task Main(string[] args) { try { AppBuilder.Configure() .UsePlatformDetect() .WithInterFont() .StartWithClassicDesktopLifetime(args); } catch (Exception ex) { await MessageBoxManager.GetMessageBoxStandard(string.Empty, $"Error: {ex.Message}").ShowAsync(); } } }