Allowing developer-specific settings in VS2008 projects
Posted
by
Xavier Nodet
on Stack Overflow
See other posts from Stack Overflow
or by Xavier Nodet
Published on 2011-01-08T16:54:40Z
Indexed on
2011/01/08
17:54 UTC
Read the original article
Hit count: 244
Is it possible to combine the following properties, and if so, how?
- Store in our version control system some Visual Studio 2008 native C++ project files for the developers in our team that use this IDE.
- Allow some of those developers to tweak their projects (e.g. using debug version of third-party libraries instead of the usual ones).
- Make sure these modifications are done in files that are not versioned.
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?
© Stack Overflow or respective owner