How to create an empty MVC 5 project in VS2013

I am using VS2013. After doing some searching on the web, I found out that I can create an MVC 5 project by clicking File - New - New Project - ASP.NET Web Application and then select MVC as the template. But in this way he created a completely new website template. I'm new to MVC, I just need a blank MVC 5 to learn it step by step, but I haven't found this option. How do I create an empty MVC 5 project in VS2013?

+3


source to share


1 answer


If you select the generated ASP.NET Web Application, you will be given the option to select an empty project instead of the ASP.NET MVC template. Note that a blank ASP.NET project template can be converted to ASP.NET MVC by adding

  • Model-view-controller code
  • Running registers
  • Routing schemes
  • other necessary ASP.NET MVC stuff ...


This will allow you to have an empty project. What you have right now is also an empty project in such a way that nothing is added to it other than the required code and libraries.

To continue, learn ASP.NET MVC from the official site . I also have an article written for beginners.

+1


source







All Articles