Replies: 1 comment 1 reply
-
Take a look at the You can get an instance of it by defining this interface: [Guid("316F4DE6-3CA4-4f0d-B003-962D28F65238")]
public interface SVsExtensionManager {} and then use that interface to resolve the service: object extensionManager = await VS.GetServiceAsync<SVsExtensionManager, object>();
The |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need some help / direction. Just started playing with the VS Extensions and I would like to create my own project that will extend functionality of another VSIX that is installed.
I started looking at sample extensions and landed on Add New File
Looking at the install location for this extension, I can see a Templates folder:
%LocalAppData%\Microsoft\VisualStudio\17.0_dae60504Exp\Extensions\Extensions-17.0_dae60504\qhs1xiqh.qqq\Templates
What I would like to do is create my own extension, that could add my own custom templates inside the template folder above.
So my questions:
Any help / ideas would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions