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 d397d13 commit 5d0803dCopy full SHA for 5d0803d
2 files changed
Nickvision.Application.GNOME/Program.cs
@@ -16,7 +16,7 @@ public static async Task Main(string[] args)
16
var builder = Host.CreateApplicationBuilder();
17
builder.ConfigureApplication(newArgs);
18
builder.ConfigureAdw<MainWindow>();
19
- var host = builder.Build();
20
- await host.RunAsync();
+ var app = builder.Build();
+ await app.RunAsync();
21
}
22
Nickvision.Application.WinUI/Program.cs
@@ -18,7 +18,7 @@ private static void Main(string[] args)
builder.ConfigureApplication(args);
builder.ConfigureWinUI<App>();
- host.Run();
+ app.Run();
23
24
0 commit comments