(string[] args)
| 17 | } |
| 18 | |
| 19 | public static IHostBuilder CreateHostBuilder(string[] args) => |
| 20 | Host.CreateDefaultBuilder(args) |
| 21 | .ConfigureWebHostDefaults(webBuilder => |
| 22 | { |
| 23 | webBuilder.UseStartup<Startup>(); |
| 24 | }); |
| 25 | } |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected