From 92e8bb7523c775014ccf68355e3f0178ebf4a61c Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Wed, 26 Sep 2018 19:18:41 +0200 Subject: implemented fudamental Web Api --- DSACore/Program.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 DSACore/Program.cs (limited to 'DSACore/Program.cs') diff --git a/DSACore/Program.cs b/DSACore/Program.cs new file mode 100644 index 0000000..373a39e --- /dev/null +++ b/DSACore/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 DSACore +{ + public class Program + { + public static void Main(string[] args) + { + CreateWebHostBuilder(args).Build().Run(); + } + + public static IWebHostBuilder CreateWebHostBuilder(string[] args) => + WebHost.CreateDefaultBuilder(args) + .UseStartup(); + } +} -- cgit v1.2.3-54-g00ecf