mlaumcherb/Млаумчерб.Клиент/Главне.cs

25 lines
727 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Text;
using System.Globalization;
using Avalonia;
namespace Млаумчерб.Клиент;
public class Главне
{
[STAThread]
public static void Main(string[] args)
{
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
}
// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<Приложение>()
.UsePlatformDetect()
.LogToTrace();
}