如何在ASP.net 5应用程序中进行自托管?

时间:2015-05-21 07:24:51

标签: asp.net-core

我通过HTTP.sys阅读了一些内容,我们可以自己托管asp.net 5应用程序。那是什么意思?

1 个答案:

答案 0 :(得分:1)

if ([self conformsToProtocol:@protocol(ElectricCarProtocol)]) { return self.batteryChargeRemaining; // you might need to cast the object here } return self.gasFuelRemaining; // idem HTTP.sys。它是a part of IIS 您可以通过运行Windows HTTP Protocole stack命令自行托管ASP.Net 5应用程序。它将使用web

<强> project.json

HTTP.sys

在控制台中运行自托管项目:

...
 "commands": {
    /* Change the port number when you are self hosting this application */
    "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000",
     ...
 }