Home > Enterprise >  How can I turn off creating a sub folder for a new added project in Visual Studio?
How can I turn off creating a sub folder for a new added project in Visual Studio?

Time:12-06

Hi this question is already asked but its 11 years ago so this problem its solved or anyone have any idea

When I try to add a new project in a solutin folder by browsing a folder, let's say

..\MyFolder

and give a new to my new Project: MyProject

The result seems to be:

..\MyFolder\MyProject\MyProject.cspoj

but I want to achieve

..\MyFolder\MyProject.cspoj

And Icannot see any option or check-box on new project addin dialog box.

How can I turn of the feature to insert the new project in a auto-created subfolder?

Thanks!

CodePudding user response:

You can follow my steps to create a new project and then add this new project to the solution. For example, I want to add the project "New" to the solution "Old". As shown in the figure below:

enter image description here

enter image description here

enter image description here

If you have suggestions for improving Visual Studio, please visit https://developercommunity.visualstudio.com/home).

  • Related