ASP.NET MVC 5 From Scratch : Create an ASP.NET MVC 5 Empty Project

A lot of people think that you can only create one kind of ASP.NET MVC 5 project, the one with the sample application. But the reality is that you can create an Empty ASP.NET MVC 5, you just need to do more work. However, it is cleaner and you can add what you need, instead of having everything in place already like the default template. So you might run into more errors with the empty project, but I think you will learn more about MVC than if you just have the default template. Plus it's more streamline. I always start with an empty project on my MVC projects. In order to follow this tutorial you must have Visual Studio 2013 installed. Step-By-Step Instructions: Create a new project in Visual Studio call "MvcApp", by clicking on File → New → Project Select Visual C# → Web → ASP.NET Web Application, in the "Name:" field type the name "MvcApp", then click "OK" 3. On the next screen select "Empty" on the "Select a templ...