What is the new Startup.cs file for in Visual Studio 2013 projects?
Every OWIN application has a startup class where you specify components for the application pipeline. If you start a new Visual Studio project, you’ll see pieces of OWIN in it. OWIN is a specification that defines an API for framework and servers to cooperation. The point of OWIN is to decouple server and application. For … Read more