diff --git a/AvaloniaTest.slnx b/AvaloniaTest.slnx
new file mode 100644
index 0000000..033339e
--- /dev/null
+++ b/AvaloniaTest.slnx
@@ -0,0 +1,3 @@
+
+
+
diff --git a/AvaloniaTest/App.axaml b/AvaloniaTest/App.axaml
new file mode 100644
index 0000000..a4961c8
--- /dev/null
+++ b/AvaloniaTest/App.axaml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AvaloniaTest/App.axaml.cs b/AvaloniaTest/App.axaml.cs
new file mode 100644
index 0000000..2c2d8de
--- /dev/null
+++ b/AvaloniaTest/App.axaml.cs
@@ -0,0 +1,23 @@
+using Avalonia;
+using Avalonia.Controls.ApplicationLifetimes;
+using Avalonia.Markup.Xaml;
+
+namespace AvaloniaTest;
+
+public partial class App : Application
+{
+ public override void Initialize()
+ {
+ AvaloniaXamlLoader.Load(this);
+ }
+
+ public override void OnFrameworkInitializationCompleted()
+ {
+ if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
+ {
+ desktop.MainWindow = new MainWindow();
+ }
+
+ base.OnFrameworkInitializationCompleted();
+ }
+}
\ No newline at end of file
diff --git a/AvaloniaTest/AvaloniaTest.csproj b/AvaloniaTest/AvaloniaTest.csproj
new file mode 100644
index 0000000..f59f38f
--- /dev/null
+++ b/AvaloniaTest/AvaloniaTest.csproj
@@ -0,0 +1,19 @@
+
+
+ WinExe
+ net10.0
+ enable
+ app.manifest
+
+
+
+
+
+
+
+
+ None
+ All
+
+
+
diff --git a/AvaloniaTest/MainWindow.axaml b/AvaloniaTest/MainWindow.axaml
new file mode 100644
index 0000000..877fdc9
--- /dev/null
+++ b/AvaloniaTest/MainWindow.axaml
@@ -0,0 +1,9 @@
+
+ Welcome to Avalonia!
+
diff --git a/AvaloniaTest/MainWindow.axaml.cs b/AvaloniaTest/MainWindow.axaml.cs
new file mode 100644
index 0000000..62b2dca
--- /dev/null
+++ b/AvaloniaTest/MainWindow.axaml.cs
@@ -0,0 +1,11 @@
+using Avalonia.Controls;
+
+namespace AvaloniaTest;
+
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/AvaloniaTest/Program.cs b/AvaloniaTest/Program.cs
new file mode 100644
index 0000000..24c7634
--- /dev/null
+++ b/AvaloniaTest/Program.cs
@@ -0,0 +1,24 @@
+using Avalonia;
+using System;
+
+namespace AvaloniaTest;
+
+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()
+ .UsePlatformDetect()
+#if DEBUG
+ .WithDeveloperTools()
+#endif
+ .WithInterFont()
+ .LogToTrace();
+}
diff --git a/AvaloniaTest/app.manifest b/AvaloniaTest/app.manifest
new file mode 100644
index 0000000..1140992
--- /dev/null
+++ b/AvaloniaTest/app.manifest
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+