diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-21 23:06:01 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-21 23:34:52 -0400 |
commit | 57d9d28554de79734401a68ee1151fc4e9e0ca83 (patch) | |
tree | fb7883d03cdf6f479e647e39a09a61bade11a610 /Dewdrop/Program.cs | |
parent | f0e2117f70455bd9883321ae5b0bf40562f2d5de (diff) | |
parent | 06ed54b2c6c2e1f49d6975a34ea36f685d7f7c49 (diff) | |
download | SMAPI-57d9d28554de79734401a68ee1151fc4e9e0ca83.tar.gz SMAPI-57d9d28554de79734401a68ee1151fc4e9e0ca83.tar.bz2 SMAPI-57d9d28554de79734401a68ee1151fc4e9e0ca83.zip |
Merge remote-tracking branch 'dewdrop/master' into feature/update-check-api (#336)
# Conflicts:
# .gitignore
Diffstat (limited to 'Dewdrop/Program.cs')
-rw-r--r-- | Dewdrop/Program.cs | 27 |
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(); + } + } +} |