As of ASP.NET Announcement 69:
"ASP.NET 5 applications run in IIS have been hosted by a component named Helios" and In beta8, we're discontinuing the "Helios" IIS host..
Also:
Hosting ASP.NET 5 applications in IIS will now be achieved using the IIS HttpPlatformHandler configured to forward through to the ASP.NET 5 Kestrel server. This native IIS module, manages the launching of an external application host process (in this case dnx.exe) and the routing of requests from IIS to the hosted process.
The problem I have right now is that I've spent a few days stumbling through the internet looking how to host DNX application with HttpPlatformHandler
in Azure and achieved nothing working.
What steps I should take to migrate from ASP.NET 5 beta7 to ASP.NET 5 beta 8?