Easy VSIX to start?

I created several macros in VS 2010, now I want to transfer them so that they are VSIX and publish them in the gallery.

They are built on top of an DTEinstance of the object presented in the VS macro editor.

How to implement this?

What replaces an object DTE?

Update I also want to configure the extension so that when it is installed on the user's computer, it also has to install a key combination, which when pressed should start with this method in the extension.
Please note that I am currently using an empty extension project in which there are no files other than a code file that contains the method that needs to be run and a .vsixmanifest file. I posted a separate question about this above: How do I make a shortcut to run the VSIX method?

+1
source share
1 answer

DTE VSIX. EnvDTE. , . IServiceProvider, GetService(typeof(SDTE)) .

+3

All Articles