diff options
Diffstat (limited to 'Server/Program.cs')
-rw-r--r-- | Server/Program.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Server/Program.cs b/Server/Program.cs new file mode 100644 index 0000000..4144500 --- /dev/null +++ b/Server/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 Server
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ CreateWebHostBuilder(args).Build().Run();
+ }
+
+ public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
+ WebHost.CreateDefaultBuilder(args)
+ .UseStartup<Startup>();
+ }
+}
|