MCPcopy Create free account
hub / github.com/bbachi/react-dotnet-example / Program

Class Program

Program.cs:12–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10namespace 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected