My Visual Studio (VS) project/solution works as intended, but VS has somehow organized the directory structure (source files) of my project in a non-logical way.
The current directory structure
Solution Folder
    Project 1 folder
        Project 1 source files
    Sub folder
        Project 2 source files
        .sln Solution file
        Project 3 folder
            Project 3 source files
I guess I have made a mistake at some point when adding the projects to the solution in VS, since it is organized like this now.
What I would ideally like is this more clean structure:
Solution Folder
    Project 1 folder
        Project 1 source files
    Project 2 folder
        Project 2 source files
    Project 3 folder
        Project 3 sources files
    .sln Solution file
When I tried this - or whenver I move/try to reorganize the files/folders outside of VS according to the above by simply moving them around, and then try to build the solution in VS afterwards, I get the following error for (pretty much) all items:
The item (name) does not exist in the project directory.
It may have been moved, renamed or deleted.
So my question is:
How do I reorganize my folders/files for my solution outside of VS, without breaking my solution?
