views:

57

answers:

3

Hi, i want to convert my window application, that i developed in VS2005 using C#, as an Add in for Visual Studio 2005. How can i do it.?

A: 

You could try looking at MSDN or books, but you might find the VS2005 information hidden behind the VS2008 stuff...

Marc Gravell
+1  A: 

There is a nice quick start tutorial in here : http://www.codeproject.com/KB/macros/LineCounterAddin.aspx

It was enough for me to start.

dr. evil
A: 

I wanted to create one myself, but i didn't have yet time to process the information required:

Overall I'd recommend waiting for Visual Studio 2010 (or start working with the fresh beta 1), because there will be many changes and many more possibilities on extending Visual Studio. (Think WPF.) The code gallery I linked already contains content regarding to this.

Sandor Davidhazi
The VS SDK used in 2005/2008 will only be supported in VS2010 for backwards compatibility. MEF ( http://codeplex.com/MEF ) is the new ways to extend VS going forward - but it is not backwards compatible with pre-2010 versions.
sean e
Thanks, good to know that!
Sandor Davidhazi