ASP .NET 5
ASP .NET 5 ASP.NET 5 stack only offers MVC as the paradigm to build HTML views. Existing Web Forms pages are not supported. The file system has been abstracted too and this is the key step to having ASP.NET 5 solutions potentially hosted on any platforms that understand and support .NET. ASP.NET 5 can run on three different runtimes: full .NET CLR, CoreCLR on Windows, and cross-platform CoreCLR on Linux and Mac systems. You can host ASP.NET 5 applications even on an Apache Server running on a Linux machine. Roslyn overtakes the historical CodeDOM API. Roslyn is also ideal for the dynamic compilation of Razor views. Roslyn is faster because it always operates in-process and doesn’t require configuration. Using a Mac computer to edit the code and uploading to a real server or virtual machine to test—no MSBuild, no Visual Studio, just a plain text editor. You no longer h...