The VisualStudio Extension and EnvDTE APIs are really hard to get into (and there are number of gotchas like the need to pin the events objects or they will stop working).
To make life easier (and more productive) the O2 VisualStudio FluentAPI tries to abstract all that complexity into easy to use and fast ExtensionMethods.
For example here is a script that shows how to add a menu item and hook the build process:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var visualStudio = new VisualStudio_2010(); | |
//add a button called "My Custom Code" to the "Tools" Menu (at bottom), which when clicked will | |
//invoke the myCustomCode function which will show a WinForms MessageBox | |
Action myCustomCode = ()=>{ | |
"This is custom code executing".messageBox(); | |
}; | |
var toolsMenu = visualStudio.dte().get_Menu("Tools"); | |
toolsMenu.add_Menu_Button("My Custom Code", myCustomCode); | |
//Set up a callbacks on build begin and build OK | |
VisualStudio_2010.On_BuildBegin.add( | |
()=>{ | |
visualStudio.errorList().clear() | |
.add_Message("There was a build"); | |
}); | |
VisualStudio_2010.On_ProjectBuild_OK.add( | |
(projectFile)=> { | |
visualStudio.errorList().add_Message("This project compliled OK: {0}".format(projectFile)); | |
}); | |
return visualStudio.dte(); |
You can execute that script in real-time using the VisualStudio C# REPL Extension , or by using the FluentSharp - VisualStudio2010 NuGet package on your project.
The source code is all on GitHub and for reference here are the Extension APIs on a number of VisualStudio Extension Objects (like EnvDTE)