Initial Commit.

This commit is contained in:
Creeper Lv
2026-05-28 02:54:17 +10:00
commit c58ce200e0
52 changed files with 1064 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Avalonia;
namespace SNote.Desktop;
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()
#if DEBUG
.WithDeveloperTools()
#endif
.WithInterFont()
.LogToTrace();
}