mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
25 lines
502 B
C#
25 lines
502 B
C#
|
|
using Avalonia;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace AvaloniaApp
|
|||
|
|
{
|
|||
|
|
class Program
|
|||
|
|
{
|
|||
|
|
[STAThread]
|
|||
|
|
public static void Main(string[] args)
|
|||
|
|
{
|
|||
|
|
BuildAvaloniaApp()
|
|||
|
|
.StartWithClassicDesktopLifetime(args);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static AppBuilder BuildAvaloniaApp()
|
|||
|
|
{
|
|||
|
|
return AppBuilder
|
|||
|
|
.Configure<App>()
|
|||
|
|
.UsePlatformDetect()
|
|||
|
|
.WithInterFont()
|
|||
|
|
.LogToTrace();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|