29 lines
886 B
C#
29 lines
886 B
C#
global using System;
|
||
global using System.Collections.Generic;
|
||
global using System.IO;
|
||
global using System.Text;
|
||
global using DTLib.Logging;
|
||
global using DTLib.Filesystem;
|
||
global using File = DTLib.Filesystem.File;
|
||
global using Directory = DTLib.Filesystem.Directory;
|
||
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();
|
||
} |