I was trying to create an empty MVC project in VS 2022 but I couldn't find true project type. When I chose "Asp.NET Web Application (Model-View-Controller)", it wasn't empty. When I chose "Asp.NET Web Application", it wasn't a MVC project. Which project type should I choose to create an empty MVC project?
CodePudding user response:
You have hit two correct choices.
As said in the projects' descriptions, the ASP .NET Web App Empty really is empty and you need to implement MVC yourself.
The default Asp.NET Web Application (Model-View-Controller) project includes example Views and Controllers, which you can always delete or modify if want to.

