I am trying to get an instance of the IVsBuildableProjectCfg
object, but I have no clue how to get it.
I currently can get the DTE Project and/or the IVsHierarchy
object representing each active project without a problem. How do you get an instance of IVsBuildableProjectCfg
per project?
Ideally, I want to hook into the build event of each project to know whether or not each build is successful, as well as hooking into the solution to see if the overall build was fired.
(I also tried using the DTE2.BuildEvents
, but my handler would never fire when I ran the debugger.)
Thanks!