Skip to content

Commit 03fcaa8

Browse files
authored
Merge pull request #195 from michaelvolz/patch-1
README.md - Output formatting fix
2 parents 58e8431 + 84d8aa4 commit 03fcaa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ public class Program
5151
```csharp
5252
public static IHostBuilder CreateHostBuilder(string[] args) =>
5353
Host.CreateDefaultBuilder(args)
54+
.UseSerilog() // <-- Add this line
5455
.ConfigureWebHostDefaults(webBuilder =>
5556
{
5657
webBuilder.UseStartup<Startup>();
57-
})
58-
.UseSerilog(); // <-- Add this line;
58+
});
5959
}
6060
```
6161

0 commit comments

Comments
 (0)