Cannot find right project in Visual Studio

Viewed 31

I am having a problem with VS. I have installed it and I cannot find the type of project I was using. Before, inside the project, I had the folders App_Data, App_Start, fonts, Scripts and Web.config, but now when I make a new project, any kind of project I choose (Api Web Asp.Net Core, App Web ASP.Net Core(MVC) and all the others...) does not create this folders and I am not able for example to add a connection string. Am I missing some installation or what? Thank you so much!

1 Answers

The folders and files listed belong to .NET Framework, which is not installed by default on newer versions of VS.

To install the .NET Framework templates, open the Visual Studio Installer > Modify > Individual Components > and make sure that .NET Framework project and item templates is checked

Related