| 10 | namespace react_dotnet_example |
| 11 | { |
| 12 | public class Program |
| 13 | { |
| 14 | public static void Main(string[] args) |
| 15 | { |
| 16 | CreateHostBuilder(args).Build().Run(); |
| 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