summaryrefslogtreecommitdiff
path: root/WebApplication1/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WebApplication1/Program.cs')
-rw-r--r--WebApplication1/Program.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/WebApplication1/Program.cs b/WebApplication1/Program.cs
new file mode 100644
index 0000000..8b7d1da
--- /dev/null
+++ b/WebApplication1/Program.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.Logging;
+
+namespace WebApplication1
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ CreateWebHostBuilder(args).Build().Run();
+ }
+
+ public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
+ WebHost.CreateDefaultBuilder(args)
+ .UseStartup<Startup>();
+ }
+}