c++visual-studio-2008visual-studio-2010vcprojvsprops

Allowing developer-specific settings in VS2008 Native C++ projects


Is it possible to combine the following properties, and if so, how?

In other words, I would like to allow developers to tweak some settings in their projects without risking that these changes are committed.

An 'optional VSPROP' file approach seems doomed to fail, as VS2008 refuses to load projects that refer to non-existent VSPROP files...

Any other suggestion? Is this possible with VS2010?


Solution

  • You may not be able to do this but using a solution that generates the vcproj like CMake for example would let you do this. Scripts all your project with CMake and literally conditionally include a config file(if present for example) that developers can change on their setup.