Browse by Tags

Listing All Solution Project Properties
12 July 07 10:04 PM | john | 2 Comments   
Don't ask why, but I needed to list all the properties of all the projects in a solution. Here's the macro that did it for me: Sub ListProjectProperties() Dim pane As EnvDTE.OutputWindowPane pane = Utilities.GetOutputWindowPane( "Output" ) Dim projects Read More...
Filed under: , ,
Playing with VS macros: Getting the PrimaryOutput
11 February 07 04:00 PM | john | 2 Comments   
Some things that should be easy are still much harder than they should be. One of those things is writing macros and add-ins for Visual Studio. The object hierachy is (a) obfuscated by a COM/managed interop mess (b) not logically or consistently laid Read More...