I'm using MySQL connector in my Visual Studio 2010 Professional project which requires changes in project settings:
Include Directories
Librarie Directories
Those settings are stored in foo.vcxproj
among with the list of files to be compiled (correct me if I'm wrong). The problem is the project is developed by many people (we are using git as our version control system) and we need to actualize foo.vcxproj
which results into breaking Include Directories
settings.
Is there a way to create something like "project (solution) specific settings in separate file" which would allow everyone to have his/her own file containing just those 3 lines defining these paths?
NOTE: I've already found this, but I'm not sure whether this is the way and what's the common/best practice for problems like these.