リモートサーバー上でasp.netコアWebサイトを実行する際に問題があります。 私はそれは私のProgram.csですIISでチョウゲンボウを使用すると、Visual Studioで2017 それを公表:IISの背後でKestrelを実行する方法
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseUrls("http://example.com")
.UseIISIntegration()
.UseStartup<Startup>()
.UseApplicationInsights()
.Build();
host.Run();
}
リモートサーバーでは、私はmyWebAppName.exeにチョウゲンボウの実行をダブルクリックし、非常に高速な を閉じたとき私がしなければならないこと? pleas、help me