mlaumcherb/Млаумчерб.Клиент/Главне.cs
2024-08-31 23:55:57 +05:00

25 lines
720 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 Млаумчерб.Клиент;
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();
}