.NET Format Style Fixes

This commit is contained in:
chompDev
2025-07-19 17:49:16 +00:00
committed by Format Bot
parent 7b6f1eb9ad
commit 95ea6d99fe
+3 -1
View File
@@ -123,7 +123,9 @@ public static class Program
{
// This method is not expected to be async so we need to wait for the Task instead of using await keyword
options.ApplicationServices.GetService<OnWebAppBuildModLoader>()!.OnLoad().Wait();
var httpConfig = options.ApplicationServices.GetService<ConfigServer>()?.GetConfig<HttpConfig>()!;
var httpConfig = options
.ApplicationServices.GetService<ConfigServer>()
?.GetConfig<HttpConfig>()!;
var certHelper = options.ApplicationServices.GetService<CertificateHelper>()!;
options.Listen(
IPAddress.Parse(httpConfig.Ip),