I used to develop my web applications using ASP.NET 4.x and host them in full IIS already during development, because:
1) I use multi-tenancy (site1.me.local and site2.me.local for my application), and IIS express cannot handle this AFAIK
2) In most cases, I donβt need a debugger β I just (re) create my application and update my browser - IIS Express reboots and the VS debugger spends some time
Now I tried my first web application using ASP.NET 5 aka Core 1.0, and I could not get it to work in full IIS to continue using my famous workflow. I found out that I can start IIS Express without debugging and just rebuild to solve # 2, but # 1 is still open.
Is full IIS support for ASP.NET 5 / Core 1.0 supported during development? If there is any documentation on how to set it up?
All the documentation for full IIS that I found is for publication, but not for development.
source share