I would like to create an extension for Visual Studio 2010. Required Features:
- Add a context menu item for Project (when the user clicks the project name in his solution, he will receive my context item in the list).
- When he clicks, a new form of WinForms appears, where he can enter some data, and the ability to save this data for later reuse.
- When he clicks OK on this Form, I will create some files and add these files to my project, which he correctly clicked.
WSCF.blue is exactly the behavior that I want to simulate in VS, but the source was written in VS2008, d would like to use VS2010 extension options that change, as I understand it ...
I found resources in msdn , but I found it confusing with incomplete information (e.g. MenuAndCommands example).
Can anyone shed some light on how to achieve what I need?
source
share