42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
global using System;
|
||
global using System.Collections;
|
||
global using System.Collections.Generic;
|
||
global using System.IO;
|
||
global using System.Text;
|
||
global using System.Threading;
|
||
global using System.Threading.Tasks;
|
||
global using Newtonsoft.Json;
|
||
global using DTLib.Logging;
|
||
global using DTLib.Filesystem;
|
||
global using File = DTLib.Filesystem.File;
|
||
global using Directory = DTLib.Filesystem.Directory;
|
||
global using Path = DTLib.Filesystem.Path;
|
||
using System.Globalization;
|
||
using Avalonia;
|
||
using Млаумчерб.Клиент.видимое;
|
||
|
||
namespace Млаумчерб.Клиент;
|
||
|
||
public class Главне
|
||
{
|
||
[STAThread]
|
||
public static void Main(string[] args)
|
||
{
|
||
try
|
||
{
|
||
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
|
||
BuildAvaloniaApp()
|
||
.StartWithClassicDesktopLifetime(args);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
Приложение.Логгер.LogError(nameof(Главне), ex);
|
||
}
|
||
}
|
||
|
||
// Avalonia configuration, don't remove; also used by visual designer.
|
||
public static AppBuilder BuildAvaloniaApp()
|
||
=> AppBuilder.Configure<Приложение>()
|
||
.UsePlatformDetect()
|
||
.LogToTrace();
|
||
} |