Skip to content

Commit 5d0803d

Browse files
committed
chore: Cleanup
1 parent d397d13 commit 5d0803d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Nickvision.Application.GNOME/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static async Task Main(string[] args)
1616
var builder = Host.CreateApplicationBuilder();
1717
builder.ConfigureApplication(newArgs);
1818
builder.ConfigureAdw<MainWindow>();
19-
var host = builder.Build();
20-
await host.RunAsync();
19+
var app = builder.Build();
20+
await app.RunAsync();
2121
}
2222
}

Nickvision.Application.WinUI/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private static void Main(string[] args)
1818
var builder = Host.CreateApplicationBuilder();
1919
builder.ConfigureApplication(args);
2020
builder.ConfigureWinUI<App>();
21-
var host = builder.Build();
22-
host.Run();
21+
var app = builder.Build();
22+
app.Run();
2323
}
2424
}

0 commit comments

Comments
 (0)