We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e4c69 commit 473d951Copy full SHA for 473d951
src/shared/Git-Credential-Manager/Program.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Threading;
3
using Atlassian.Bitbucket;
4
+using Avalonia;
5
using GitHub;
6
using GitLab;
7
using Microsoft.AzureRepos;
@@ -101,5 +102,11 @@ private static void AppMain(object o)
101
102
Dispatcher.MainThread.Shutdown();
103
}
104
105
+
106
+ // Required for Avalonia designer
107
+ static AppBuilder BuildAvaloniaApp() =>
108
+ AppBuilder.Configure<AvaloniaApp>()
109
+ .UsePlatformDetect()
110
+ .LogToTrace();
111
112
0 commit comments