-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
29 lines (27 loc) · 830 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 CoExp_Web
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args)
//Change here the environment. Possible values: "Production", "Development", "Private", "Docker"
.UseEnvironment("Production")
.Build()
.Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseKestrel()
.UseStartup<Startup>();
}
}