Home > Software design >  Cannot find right project in Visual Studio
Cannot find right project in Visual Studio

Time:09-13

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!

CodePudding user response:

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

CodePudding user response:

Thank you very much Simon. I have already installed ".NET Framework project and item templates", that's why I am not understanding why I am having this issue...

  • Related