Skip to content

Commit 2c9dc0e

Browse files
committed
Reviewer feedback
1 parent fe7d2c6 commit 2c9dc0e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/extensibility/adding-user-control-to-the-start-page.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This walkthrough shows how to add a DLL reference to a custom Start Page. The ex
3737

3838
### To write the XAML for the user control
3939

40-
1. Open the XAML file for the user control. In the `Grid` element, add the following row definitions to the control.
40+
1. Open the XAML file for the user control. In the `<Grid>` element, add the following row definitions to the control.
4141

4242
```vb
4343
<Grid.RowDefinitions>
@@ -47,7 +47,7 @@ This walkthrough shows how to add a DLL reference to a custom Start Page. The ex
4747

4848
```
4949

50-
2. In the main `Grid` element, add the following new `Grid` element, which contains a text box for typing Web addresses and a button for setting the new address.
50+
2. In the main `<Grid>` element, add the following new `<Grid>` element, which contains a text box for typing Web addresses and a button for setting the new address.
5151

5252
```xml
5353
<Grid Grid.Row="0">
@@ -60,7 +60,7 @@ This walkthrough shows how to add a DLL reference to a custom Start Page. The ex
6060
</Grid>
6161
```
6262

63-
3. Add the following frame to the top-level `Grid` element just after the `Grid` element that contains the button and textbox.
63+
3. Add the following frame to the top-level `<Grid>` element just after the `<Grid>` element that contains the button and textbox.
6464

6565
```vb
6666
<Frame Grid.Row="1" x:Name="WebFrame" Source="http://www.bing.com" Navigated="WebFrame_Navigated" />

docs/extensibility/adding-visual-studio-commands-to-a-start-page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ xmlns:vscom="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.Visua
8484
```
8585

8686
> [!NOTE]
87-
> You must copy your assembly and then paste it in *\..\\Visual Studio installation folder\Common7\IDE\PrivateAssemblies\\* to make sure it is loaded before it is called.
87+
> You must copy your assembly and then paste it in *..\\{Visual Studio installation folder}\Common7\IDE\PrivateAssemblies\* to make sure it is loaded before it is called.
8888

8989
## Add commands with the DTE object
9090
You can access the DTE object from a Start Page, both in markup and in code.

docs/extensibility/anatomy-of-a-vsix-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ A VSIX package is a *.vsix* file that contains one or more Visual Studio extensi
5454
## [Content_Types].xml
5555
The *[Content_Types].xml* file identifies the file types in the expanded *.vsix* file. Visual Studio uses this file during installation of the package but does not install the file itself. For more information about this file, see [The structure of the [Content_types].xml file](the-structure-of-the-content-types-dot-xml-file.md).
5656

57-
A *[Content_Types].xml* file is required by the Open Packaging Conventions (OPC) standard. For more information about OPC, see [OPC: A new standard for packaging your data](http://go.microsoft.com/fwlink/?LinkID=148207) on the MSDN Web site.
57+
A *[Content_Types].xml* file is required by the Open Packaging Conventions (OPC) standard. For more information about OPC, see [OPC: A new standard for packaging your data](https://blogs.msdn.microsoft.com/msdnmagazine/2007/08/08/opc-a-new-standard-for-packaging-your-data/) on the MSDN Web site.

docs/extensibility/binding-keyboard-shortcuts-to-menu-items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ To bind a keyboard shortcut to a custom menu command, just add an entry to the *
7272

7373
In most situations, **Shift** should not be used without a second modifier because pressing it already causes most alphanumeric keys to type an uppercase letter or a symbol.
7474

75-
Virtual-key codes let you access special keys that do not have a character associated with them, for example, function keys and the **Backspace** key. For more information, see [Virtual-key codes](http://go.microsoft.com/fwlink/?LinkID=105932).
75+
Virtual-key codes let you access special keys that do not have a character associated with them, for example, function keys and the **Backspace** key. For more information, see [Virtual-key codes](https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes).
7676

7777
To make the command available in the Visual Studio editor, set the `editor` attribute to `guidVSStd97`.
7878

0 commit comments

Comments
 (0)