31 lines
801 B
C#
31 lines
801 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|