views:

25

answers:

1

I have a huge solution with many projects, I would like to set a particular propertie (for example warning level) for each of the projects. Can this be done with a macro?

+1  A: 

The DTE2 Interface looks like it might provide access to that. However, I suspect it might be simpler to write some kind of script (e.g., with awk, perl, ruby, python, etc.) that processes the files. For example, if dealing with C/C++ projects, it could spin through the .vcproj files and add/change lines as needed.

Mark Wilkins
I had no idea this interface exists - thanks
Dan