views:

15

answers:

1

Lately I've been working on a C++ project in Visual Studio. I had to configure the project in every detail: libraries, linker options, optimization, optional compiler setting etc... Now I'm moving to another similar project and I'd like to reuse the settings of the current one without manually setting them again.

+1  A: 

You do this with a project property sheet. I typed up an answer recently to show how to use them.

Hans Passant
I can't export current properties to a property sheet, can I?
mp
Well, you sorta can, it is just an XML file that you can hack with Notepad. I wouldn't recommend it though if you don't have experience editing project and property sheet files directly. The IDE will help you avoid making mistakes.
Hans Passant