I'd like to create an extension for Visual Studio 2010. The functionalities I need are these:
- Add a context menu item for Project (when user right clicks project name in his solution, he'll get my context item in the list).
- When he clicks, a new WinForms form appears, where he can input some data, and an option to save that data for future reuse.
- When he clicks OK on that Form I'll generate some files and add those files to be a part of his project that he rightclicked.
The WSCF.blue is exactly the kind of behaviour I want to immitate in VS, but it's source was written in VS2008, and I'd like to use VS2010 Extension options which are quite changed as I understand...
I found some resources on the msdn, but I found it confusing with incomplete info (e.g. MenuAndCommands example).
Can anyone shed some light on how to achieve what I'm after?