Is there an easy way to copy a project in Visual Studio 2010 ?
Copying the project folder to another path and opening it leads to the following error.

I am only interested in solutions that will not include more than 1 simple action . I am creating a simple console project, which I am going to copy many times, and am not very fond of going into the settings and repeating several steps every time when such simple things need to be done.
I am using Visual C ++ Express 2010 . Pay attention to the project structure below. I created it as an empty project and added 1 main.cpp file to it.

The project was created using the settings .
The project in explorer looks like this .
There is a function Copy project , but this means more than 1 manual action:
- opening an old project;
- pressing the "Copy" button in the menu;
- closing the old project;
Copying the parent folder of the solution will work, but this creates an unnecessary folder that I will have to move in every copied project every time I need to access the copied project. I would like to avoid unnecessary pass-through folders.
Please note that when creating the project, the checkbox "Create a directory for the solution" was not checked, see the link above. If this has been verified, this will result in 2 unnecessary pass-through folders. There is a folder solution folder , where the solution is created and the project folder . By checking the box, you will get rid of the project folder, and the project files are created in the solution directory, which still leaves the other 2 - I would like to have one for the reasons above.
source share