ASP.NET Core and IIS
What does it means to host you application in IIS? To help with that there is new module called ASP.NET Core Module.
By Dawid on (tags: ASP.NET, core, iis, categories: code)
What does it means to host you application in IIS? To help with that there is new module called ASP.NET Core Module.
By Dawid on (tags: ASP.NET, core, iis, categories: code)
In previous blog post I’ve show you how to host ASP.NET Core application using Kestrel server. But why not to write our own server – in ASP.NET Core that is actually quite simple.
By Dawid on (tags: ASP.NET, core, hosting, server, categories: code)Hosting is how you get you ASP.NET application up and running. And ASP.NET Core is just bunch of libraries host in you own process. It’s not provide a hosting – user have to take care of providing hosting process.
By Dawid on (tags: ASP.NET, core, hosting, categories: code)