diff --git a/MVC_Start/Program.cs b/MVC_Start/Program.cs index 4d1db8e..0ff8a6b 100644 --- a/MVC_Start/Program.cs +++ b/MVC_Start/Program.cs @@ -14,7 +14,8 @@ public class Program { public static void Main(string[] args) { - BuildWebHost(args).Run(); + // Alex's comment + BuildWebHost(args).Run(); } public static IWebHost BuildWebHost(string[] args) => @@ -22,4 +23,5 @@ public static IWebHost BuildWebHost(string[] args) => .UseStartup() .Build(); } + //Deb's Comment }