views:

47

answers:

1

Hi, I'm using VS2005 and I have a property sheet (vsprops file) that I'm adding to all the C++ projects but I can't seem to find out how to add them to the C# projects. How do I go about doing this?

+1  A: 

A project property sheet is an implementation detail of the C++ IDE. There is no equivalent for the C# IDE. Mostly because there are so few knobs to tweak. As compared with the C and C++ compiler and linker who have, what, over 100 options.

Project + Properties to change the C# settings. Rejoice in the sparsity. Actually changing any of them is quite rare, the project template takes care of them, if necessary.

Hans Passant