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