Visual Studio Solutions / Multiple project : How to effectively propagate project properties amongst several C++ projects

后端 未结 5 1369
南旧
南旧 2020-12-04 08:38

I am working with a Visual Studio 2005 C++ solution that includes multiple projects (about 30). Based upon my experience, it often becomes annoying to maintain all the prop

5条回答
  •  死守一世寂寞
    2020-12-04 09:19

    I think you need to investigate properties files, i.e. *.vsprops (older) or *.props (latest)

    You do need to add the properties file manually to each project, but once that's done, you have multiple projects, but one .[vs]props file. If you change the properties, all projects inherit the new settings.

提交回复
热议问题