I am trying to create a visual extension of the studio. My project was created from the "VSIX Project" template.
According to the documentation, there should be a template for a custom editor, but I cannot find it and cannot find it. Is there something that I am missing for the SDK, or am I reading the documentation incorrectly?
https://msdn.microsoft.com/en-us/library/bb166460.aspx
To create a VSPackage using a Visual Studio package template
1.Create a project using the Visual Studio package template. For more information about using this template, see Create an extension using the menu command.
2. Select the Custom Editor option and click Next. The Editor Options page is displayed.
3. Enter the name of your editor in the "Editor Name" field. Enter the file extension that you want to associate with your editor in the file Extension box. Your editor is available for files with this extension. The file extension is registered only for Visual Studio, but not for Windows. Enter the default file name for new documents created using your editor in the "Default file name" field.
4. Click Finish to create your VSPackage in the folder you specify.

source
share