I have written a language and debug engine extension for visual studio, and I'm able to create a shell application from this extension. However, I'd like to include p4vs, as it's a pain trying to install that to the shell seperately, as the installer doesn't target shell applications.
Asked
Active
Viewed 35 times
0
-
it is a extension for visual studio, which does not support visual studio shell, I would suggest that you could contract the author of extension. – Zhanglong Wu - MSFT Jul 07 '17 at 05:58
1 Answers
0
I've discovered that this is indeed possible by following the instructions here.
But the basic gist is:
- Create a subfolder in the Extensions/ subfolder
- Rename the vsix extension to ".zip"
- Using your favourite zip file manager, extract the files to your newly created extension folder from step 1
- Delete the [Content_types].xml file
- Optionally, edit the vsixmanifest file and add InstalledByMsi="true" to the element to prevent users from uninstalling the extension via the extension manager

Dan Forever
- 381
- 2
- 12