Reputation: 61606
I want to install my asp.net 5 website on a windows server 2012 box (IIS). From what I understand, asp.net 5 is self-contained and is deployed via the Publish function of Visual Studio 2015. And, thus doesn't need to be separately installed on the target server..
Is this correct?
Upvotes: 1
Views: 133
Reputation: 56500
IIS configuration is documented. You need to install the IIS Platform Handler, as IIS doesn't understand the new way to start apps without it.
After that publish will do everything you need.
Upvotes: 2