diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-09 21:30:49 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-09 21:30:49 +0800 |
| commit | 6b9268d2d88c81c18f2cc21e343d321989dad99c (patch) | |
| tree | 051a3e1ca1c49a8e67a4da2c59fec576fc9e6ec5 /JVDesktop/Program.cs | |
| parent | 3f8e818b58127a2fad66ed67032344f553632c38 (diff) | |
Set up project structure and CLI integration
Diffstat (limited to 'JVDesktop/Program.cs')
| -rw-r--r-- | JVDesktop/Program.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/JVDesktop/Program.cs b/JVDesktop/Program.cs index 8d39a63..850598c 100644 --- a/JVDesktop/Program.cs +++ b/JVDesktop/Program.cs @@ -1,18 +1,14 @@ -using Avalonia; +using Avalonia; using System; namespace JVDesktop; sealed 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. [STAThread] 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() |
