Writing VS2010 Extension

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?

+3
source share
1 answer

I really don’t know where to indicate so that you can get concrete examples of what you are trying to achieve. However, in the following resources you will find complete and detailed information about the overall process and some help to achieve 1. and 2.

VS 2010 Package Development - Chapter 1: Visual Studio Packages

Developing VS 2010 - Chapter 2: Commands, Menus, and Toolbars

0
source

Source: https://habr.com/ru/post/1774968/


All Articles