| 4 | namespace dotnet_hello_world |
| 5 | { |
| 6 | public class Program |
| 7 | { |
| 8 | public static void Main(string[] args) |
| 9 | { |
| 10 | CreateHostBuilder(args).Build().Run(); |
| 11 | } |
| 12 | |
| 13 | public static IHostBuilder CreateHostBuilder(string[] args) => |
| 14 | Host.CreateDefaultBuilder(args) |
| 15 | .ConfigureWebHostDefaults(webBuilder => |
| 16 | { |
| 17 | webBuilder.UseStartup<Startup>(); |
| 18 | }); |
| 19 | } |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected