20 lines
477 B
C#
20 lines
477 B
C#
using Avalonia;
|
|
|
|
namespace Project_Periodensystem.View
|
|
{
|
|
internal static class Program
|
|
{
|
|
[System.STAThread] // <-- Das ist korrekt!
|
|
public static void Main(string[] args)
|
|
{
|
|
BuildAvaloniaApp()
|
|
.StartWithClassicDesktopLifetime(args);
|
|
}
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.LogToTrace();
|
|
}
|
|
}
|