ASCU_ALL/ShowTrend_tmp3/ShowTrend3/Program.cs

31 lines
801 B
C#
Raw Normal View History

2021-11-12 15:00:41 +05:00
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 ShowTrend3
{
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseKestrel()
//.UseUrls("Http://*:90")
//.UseUrls("Http://10.10.45.244:5010")
.UseUrls("Http://127.0.0.1:5010")
//.UseUrls("Http://10.10.2.66:90")
.UseStartup<Startup>()
.Build();
}
}