diff options
Diffstat (limited to 'Program.cs')
| -rw-r--r-- | Program.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Program.cs b/Program.cs deleted file mode 100644 index 312bbb4..0000000 --- a/Program.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System;
-using Avalonia;
-using Avalonia.Controls.ApplicationLifetimes;
-using Avalonia.ReactiveUI;
-
-namespace Erable
-{
- class Program
- {
- // Initialization code. Don't use any Avalonia, third-party APIs or any
- // SynchronizationContext-reliant code before AppMain is called: things aren't initialized
- // yet and stuff might break.
- public static void Main(string[] args) => BuildAvaloniaApp()
- .StartWithClassicDesktopLifetime(args);
-
- // Avalonia configuration, don't remove; also used by visual designer.
- public static AppBuilder BuildAvaloniaApp()
- => AppBuilder.Configure<App>()
- .UsePlatformDetect()
- .LogToTrace()
- .UseReactiveUI();
- }
-}
|
