MCPcopy Create free account
hub / github.com/GoogleCloudPlatform/cloud-code-samples / Program

Class Program

dotnet/dotnet-hello-world/src/Program.cs:6–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected