diff --git a/Endpoint/Program.cs b/Endpoint/Program.cs index 6499332..34e352a 100644 --- a/Endpoint/Program.cs +++ b/Endpoint/Program.cs @@ -84,6 +84,11 @@ public class Program var app = builder.Build(); +#if DEBUG + // Write configurations + foreach (var item in app.Configuration.AsEnumerable()) + Console.WriteLine($"{item.Key}:{item.Value}"); +#endif // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) {