Visual Studio 2010 no longer has the "VC++ Directories" page under Tools / Options. It's been superseded by the Property Manager, and I'm unsure how best to use this.
For example, I've got a solution containing multiple projects, all of which require a header file from the Microsoft SMS SDK. This SDK is installed in the same place on all of our developer workstations; for Visual Studio 2008 we just edited the VC++ Directories appropriately.
It feels like I should be adding a new "SMS 2003 SDK" property sheet with the correct details, and then adding this to every project in my solution.
Some questions about this approach:
- Where should this property sheet live? If I open the solution file on another PC, where does it look for the property sheet? Or in other words: when setting up the gold image for our dev PCs, where should this file be placed?
- Do I really have to edit every project in the solution? This is time-consuming and feels fragile.
- At what point do I decide to use a custom property page over editing the
Microsoft.Cpp.Win32.user
property page? The majority of my projects need the SMS 2003 SDK. Only some need WTL.
Any other tips for working effectively with VS2010 property pages?