Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can an ASP.NET vNext application be hosted in IIS

I'm struggling to workout how to host a local ASP.NET vNext application in IIS. Is this possible currently or is just selfhosting or IISExpress available. Or am I missing the point?

like image 672
Tim Avatar asked Sep 12 '14 07:09

Tim


1 Answers

You can use 'kpm pack' to create a package and then drop that in the wwwroot folder. Create an application in the IIS Manager. Refer to the 'using command line' section in the below link to create the packaged web project https://github.com/aspnet/Home/wiki/FTP-deploy-an-AspNet-vNext-application-to-Microsoft-Azure-websites

You can also right click a project in VS14 and click Publish, then choose Filesystem in the dialogue.

like image 110
Suhas Joshi Avatar answered Oct 20 '22 18:10

Suhas Joshi