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)

ASP.NET Core hosting

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)

Secrets of project.json file

As you may already notice ASP.NET Core is using project.json files to controls almost all aspects of the project. It contains lot of section (which I will describe bellow) with full support of intellisense. That file is also synchronized with Solution Explorer – removing referenced from file will automatically update References node in Solution Explorer. Here is the list of pro…

By Dawid on (tags: ASP.NET, core, project.json, categories: code)