Hi,
Anyone know or can point me to files on how to create a Plug-In for Visual
Studio, specifically 2008 (2005 will do)? I want to create a plug in that
enables Intellisense to pick out errors in code for a non Microsoft language.
Thanks in advance
Alex Blekhman - 28 Jan 2008 13:41 GMT
> Anyone know or can point me to files on how to create a Plug-In
> for Visual
> Studio, specifically 2008 (2005 will do)? I want to create a
> plug in that
> enables Intellisense to pick out errors in code for a non
> Microsoft language.
VS supports several levels of automation depends on the complexity
of the task you're trying to solve. The simplest method is writing
a macro. The most complex method is writing VS extension package
with VS SDK. You can find useful info in MSDN about VS automation:
"Automation and Extensibility for Visual Studio"
http://msdn2.microsoft.com/en-us/library/xc52cke4.aspx
"Visual Studio SDK"
http://msdn2.microsoft.com/en-us/library/bb166441.aspx
Alex