summaryrefslogtreecommitdiff
path: root/Dewdrop/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Dewdrop/Program.cs')
-rw-r--r--Dewdrop/Program.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Dewdrop/Program.cs b/Dewdrop/Program.cs
new file mode 100644
index 00000000..c6a5a642
--- /dev/null
+++ b/Dewdrop/Program.cs
@@ -0,0 +1,27 @@
+using System;
+using System.IO;
+using System.Net.Http;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Newtonsoft.Json;
+using System.Collections.Generic;
+
+namespace Dewdrop
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ var host = new WebHostBuilder()
+ .UseKestrel()
+ .UseContentRoot(Directory.GetCurrentDirectory())
+ .UseIISIntegration()
+ .UseStartup<Startup>()
+ .UseApplicationInsights()
+ .Build();
+
+ host.Run();
+ }
+ }
+}