feat(launcher): Campaign LA add Avalonia desktop shell
This commit is contained in:
parent
6c4cd2bbc6
commit
d0a9c65d85
31 changed files with 4831 additions and 16 deletions
14
src/AcDream.Launcher/Program.cs
Normal file
14
src/AcDream.Launcher/Program.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using Avalonia;
|
||||
|
||||
namespace AcDream.Launcher;
|
||||
|
||||
internal static class Program
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main(string[] args) =>
|
||||
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
||||
|
||||
public static AppBuilder BuildAvaloniaApp() =>
|
||||
AppBuilder.Configure<App>()
|
||||
.UsePlatformDetect();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue