Skip to content

Commit 829303f

Browse files
committed
delete vs-2015 see also links
1 parent d0c879a commit 829303f

10 files changed

+16
-22
lines changed

docs/extensibility/document-data-and-document-view-in-custom-editors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ A custom editor consists of two parts: a document data object and a document vie
3131
There are two options for creating a view for a custom editor. One is the in-place activation model, where the view is hosted in a window using either an ActiveX control or a document data object. The second is the simplified embedding model, where the view is hosted by [!INCLUDE[vsprvs](../code-quality/includes/vsprvs_md.md)] and <xref:Microsoft.VisualStudio.Shell.Interop.IVsWindowPane> is implemented to handle window commands. For information about the in-place activation model, see [In-place activation](../extensibility/in-place-activation.md). For information about the simplified embedding model, see [Simplified embedding](../extensibility/simplified-embedding.md).
3232

3333
## See also
34+
3435
- [Support multiple document views](../extensibility/supporting-multiple-document-views.md)
3536
- [Simplified embedding](../extensibility/simplified-embedding.md)
3637
- [How to: Attach views to document data](../extensibility/how-to-attach-views-to-document-data.md)
3738
- [Document lock holder management](../extensibility/document-lock-holder-management.md)
3839
- [Single and multi-tab views](../extensibility/single-and-multi-tab-views.md)
3940
- [Save a standard document](../extensibility/internals/saving-a-standard-document.md)
4041
- [Persistence and the running document table](../extensibility/internals/persistence-and-the-running-document-table.md)
41-
- [Determine which editor opens a file in a project](../extensibility/internals/determining-which-editor-opens-a-file-in-a-project.md)
42-
- [Editor factories](/visualstudio/extensibility/editor-factories?view=vs-2015)
42+
- [Determine which editor opens a file in a project](../extensibility/internals/determining-which-editor-opens-a-file-in-a-project.md)

docs/extensibility/internals/guids-and-ids-of-visual-studio-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ The GUID and ID values of the commands included in the Visual Studio integrated
5555
There is no reliable way to search on dynamic text. Instead, find a group that hosts the desired command by consulting [GUIDs and IDs of Visual Studio menus](../../extensibility/internals/guids-and-ids-of-visual-studio-menus.md) or [GUIDs and IDs of Visual Studio toolbars](../../extensibility/internals/guids-and-ids-of-visual-studio-toolbars.md), and search on the ID of that group. If the command definition does not have the group as its [Parent element](../../extensibility/parent-element.md), search *SharedCmdPlace.vsct* and *ShellCmdPlace.vsct* (or *VsDbgCmdPlace.vsct* for debugger commands) for a `<CommandPlacement>` element that sets the parent of the command. *SharedCmdPlace.vsct*, *ShellCmdPlace.vsct*, and *VsDbgCmdPlace.vsct* are in the *\<Visual Studio SDK installation path\>\VisualStudioIntegration\Common\Inc\\* folder.
5656

5757
## See also
58-
- [MenuCommands vs. OleMenuCommands](/visualstudio/extensibility/menucommands-vs-olemenucommands?view=vs-2015)
58+
5959
- [Visual Studio command table (.vsct) files](../../extensibility/internals/visual-studio-command-table-dot-vsct-files.md)
6060
- [VSCT XML schema reference](../../extensibility/vsct-xml-schema-reference.md)

docs/extensibility/internals/ide-defined-commands-for-extending-project-systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ When you want to extend project systems, you can use commands and command groups
6464
|IDG_VS_CTXT_PROJECT_PROPERTIES|Commands that provide access to the **Project Properties** dialog box.|
6565

6666
## See also
67+
6768
- [How VSPackages Add User Interface Elements](../../extensibility/internals/how-vspackages-add-user-interface-elements.md)
68-
- [MenuCommands Vs. OleMenuCommands](/visualstudio/extensibility/menucommands-vs-olemenucommands?view=vs-2015)
6969
- [Creating Reusable Groups of Buttons](../../extensibility/creating-reusable-groups-of-buttons.md)

docs/extensibility/internals/making-commands-available.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ Also notice that every UI context must be given in a separate `VisibilityItem` e
144144
## See also
145145

146146
- [Add a command to the Solution Explorer toolbar](../../extensibility/adding-a-command-to-the-solution-explorer-toolbar.md)
147-
- [MenuCommands Vs. OleMenuCommands](/visualstudio/extensibility/menucommands-vs-olemenucommands?view=vs-2015)
148147
- [How VSPackages Add User Interface Elements](../../extensibility/internals/how-vspackages-add-user-interface-elements.md)
149148
- [Command Routing in VSPackages](../../extensibility/internals/command-routing-in-vspackages.md)
150149
- [Dynamically Adding Menu Items](../../extensibility/dynamically-adding-menu-items.md)

docs/extensibility/internals/syntax-coloring-in-a-legacy-language-service.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,4 @@ Visual Studio uses a coloring service to identify elements of the language and d
6767

6868
- [Custom Colorable Items](../../extensibility/internals/custom-colorable-items.md)
6969

70-
Discusses how to implement custom colorable items.
71-
72-
## See also
73-
74-
- [Using Fonts and Colors](/visualstudio/extensibility/using-fonts-and-colors?view=vs-2015)
70+
Discusses how to implement custom colorable items.

docs/extensibility/localizing-menu-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,6 @@ You must modify the *assemblyinfo.cs* file and the project file to incorporate t
160160
This creates a main assembly, and resource assemblies for each language. For information on localizing the deployment process, see [Localize VSIX packages](../extensibility/localizing-vsix-packages.md)
161161

162162
## See also
163+
163164
- [Extend menus and commands](../extensibility/extending-menus-and-commands.md)
164-
- [MenuCommands vs. OleMenuCommands](/visualstudio/extensibility/menucommands-vs-olemenucommands?view=vs-2015)
165165
- [Globalize and Localize applications](../ide/globalizing-and-localizing-applications.md)

docs/extensibility/visual-studio-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ The Visual Studio SDK helps you extend Visual Studio features or integrate new f
6868
- [Extending Visual Studio](https://blog.slaks.net/2013-10-18/extending-visual-studio-part-1-getting-started/)
6969

7070
## See also
71+
7172
- [Create an extension with a menu command](../extensibility/creating-an-extension-with-a-menu-command.md)
7273
- [How to: Migrate extensibility projects to Visual Studio 2017](../extensibility/how-to-migrate-extensibility-projects-to-visual-studio-2017.md)
7374
- [FAQ: Converting add-ins to VSPackage extensions](../extensibility/faq-converting-add-ins-to-vspackage-extensions.md)
@@ -87,5 +88,4 @@ The Visual Studio SDK helps you extend Visual Studio features or integrate new f
8788
- [Ship Visual Studio extensions](../extensibility/shipping-visual-studio-extensions.md)
8889
- [Inside the Visual Studio SDK](../extensibility/internals/inside-the-visual-studio-sdk.md)
8990
- [Support for the Visual Studio SDK](../extensibility/support-for-the-visual-studio-sdk.md)
90-
- [Archive](/visualstudio/extensibility/archive?view=vs-2015)
9191
- [Visual Studio SDK reference](../extensibility/visual-studio-sdk-reference.md)

docs/extensibility/vscodewindowmanager-object.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ ms.workload:
1515
- "vssdk"
1616
---
1717
# VSCodeWindowManager object
18+
1819
The language service implements the code window manager and is responsible for managing adornments (for example, the drop-down bar). For more information, see [Customizing Code Windows by Using the Legacy API](/visualstudio/extensibility/customizing-code-windows-by-using-the-legacy-api?view=vs-2015).
1920

20-
The following table shows the interfaces in the `VSCodeWindowManager` object.
21+
The following table shows the interfaces in the `VSCodeWindowManager` object.
2122

2223
|Interface|Description|
2324
|---------------|-----------------|
24-
|<xref:Microsoft.VisualStudio.TextManager.Interop.IVsCodeWindowManager>|Allows adornments (such as drop-down bars) to be added to or removed from a code window.|
25-
26-
## See also
27-
- [Customizing code windows by using the legacy API](/visualstudio/extensibility/customizing-code-windows-by-using-the-legacy-api?view=vs-2015)
25+
|<xref:Microsoft.VisualStudio.TextManager.Interop.IVsCodeWindowManager>|Allows adornments (such as drop-down bars) to be added to or removed from a code window.|

docs/extensibility/vstextview-object.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ ms.workload:
1515
- "vssdk"
1616
---
1717
# VSTextView object
18+
1819
The text view is a window that lets users view and edit the Unicode text of the text buffer. Essentially, the view is what most users refer to as the editor. Because the view is separated from the buffer by various text layers (word wrap, outlining text, and so on), the view is not guaranteed to be an exact representation of the text in the buffer. For more information about the text view, see [Accessing theText view by using the legacy API](/visualstudio/extensibility/accessing-thetext-view-by-using-the-legacy-api?view=vs-2015).
1920

20-
The following table shows the interfaces in the <xref:Microsoft.VisualStudio.TextManager.Interop.VsTextView> object.
21+
The following table shows the interfaces in the <xref:Microsoft.VisualStudio.TextManager.Interop.VsTextView> object.
2122

2223
|Interface|Description|
2324
|---------------|-----------------|
@@ -32,6 +33,6 @@ The text view is a window that lets users view and edit the Unicode text of the
3233
|<xref:Microsoft.VisualStudio.TextManager.Interop.IVsThreadSafeTextView>|Performs operations on the view from a different thread.|
3334

3435
## See also
36+
3537
- [Figures edit](https://www.microsoft.com/download/details.aspx?id=55984)
36-
- [VSTextBuffer object](../extensibility/vstextbuffer-object.md)
37-
- [Accessing theText view by using the legacy API](/visualstudio/extensibility/accessing-thetext-view-by-using-the-legacy-api?view=vs-2015)
38+
- [VSTextBuffer object](../extensibility/vstextbuffer-object.md)

docs/extensibility/walkthrough-adding-features-to-a-custom-editor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,5 @@ After you create a custom editor, you can add more features to it.
147147
- `Window.Object`
148148

149149
## See also
150-
- [Contribute to the automation model](../extensibility/internals/contributing-to-the-automation-model.md)
151-
- [How to: Provide context for editors](/visualstudio/extensibility/how-to-provide-context-for-editors?view=vs-2015)
150+
151+
- [Contribute to the automation model](../extensibility/internals/contributing-to-the-automation-model.md)

0 commit comments

Comments
 (0)