Visual Studio projects assume that all files belonging to the project are located in the same directory as the project file, or one below it.
For a specific project (in the sense of not Visual Studio) this is not what I want. I want to store MSVC-dependent files in a different folder, because there may be other ways to create an application, for example, using SCons. In addition, all the materials that MSVC reveals clutter the source directory.
Example:
/source /scons /msvc <- here is where I want my MSVC-specific stuff
I can add the files in Explorer to the source directory manually, and then associate them in Visual Studio with the project. It's not the end of the world, but it annoys me a bit that Visual Studio is trying to dictate the folder structure of my project.
I looked at the schemas for the project files, but realized that this annoying assumption is in the IDE, not in the project file format.
Does anyone know an easier way to solve this problem than manually linking files to a project from the source directory?
visual-c ++ visual-studio directory-structure
Skurmedel
source share