markus / ConvertService / ServiceBase / FileDownloadSite / Program.cs @ c8183702
이력 | 보기 | 이력해설 | 다운로드 (614 Bytes)
1 | 53c9637d | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.IO; |
||
4 | using System.Linq; |
||
5 | using System.Threading.Tasks; |
||
6 | using Microsoft.AspNetCore; |
||
7 | using Microsoft.AspNetCore.Hosting; |
||
8 | using Microsoft.Extensions.Configuration; |
||
9 | using Microsoft.Extensions.Logging; |
||
10 | |||
11 | namespace FileDownloadSite |
||
12 | { |
||
13 | public class Program |
||
14 | { |
||
15 | public static void Main(string[] args) |
||
16 | { |
||
17 | CreateWebHostBuilder(args).Build().Run(); |
||
18 | } |
||
19 | |||
20 | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => |
||
21 | WebHost.CreateDefaultBuilder(args) |
||
22 | .UseStartup<Startup>(); |
||
23 | } |
||
24 | } |