Skip to content
Merged

Fix typo #10582

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ On the **Tools** > **Options** > **Debugging** > **Symbols** page, you can:
::: moniker range=">= vs-2022"

- Select **Automatically choose what module symbols to search for** (recommended) to allow
Visual studio to decide what symbols to search for and load. By default, Visual Studio
Visual Studio to decide what symbols to search for and load. By default, Visual Studio
automatically loads symbols that were built by your opened solution, and loads any
additional symbols that are needed to perform common debugging operations. This reduces
the number of files that must be searched for and loaded by Visual Studio, which
Expand Down
4 changes: 2 additions & 2 deletions docs/extensibility/installing-the-visual-studio-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ To install the Visual Studio SDK after completing your Visual Studio installatio
If you open a solution with an extensibility project without first installing the VSSDK, you'll be prompted by an **Install Missing Feature** dialog to install the **Visual Studio extension development** workload:

::: moniker range="vs-2019"
:::image type="content" source="media/install-extension-development.png" alt-text="Screenshot showing the Visual studio dialog to Install extension development workload.":::
:::image type="content" source="media/install-extension-development.png" alt-text="Screenshot showing the Visual Studio dialog to Install extension development workload.":::
::: moniker-end

::: moniker range=">=vs-2022"
:::image type="content" source="media/vs-2022/install-extension-development.png" alt-text="Screenshot showing the Visual studio dialog to Install extension development workload.":::
:::image type="content" source="media/vs-2022/install-extension-development.png" alt-text="Screenshot showing the Visual Studio dialog to Install extension development workload.":::
::: moniker-end

## Install the Visual Studio SDK from the command line
Expand Down
2 changes: 1 addition & 1 deletion docs/extensibility/the-experimental-instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To safeguard your Visual Studio development environment from untested applicatio

If you want to start the experimental instance of Visual Studio outside a specific solution, run the following command at the command window:

"*\<Visual studio installation path>*\Common7\IDE\devenv.exe" /RootSuffix Exp
"*\<Visual Studio installation path>*\Common7\IDE\devenv.exe" /RootSuffix Exp

> [!NOTE]
> The experimental instance is written to the registry under the `<version number>Exp` and `<version number>Exp_Config` nodes. For example the Visual Studio 2015 experimental registry area is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ _addGuidelineCommand =

```

You create an `OleMenuCommand`. Visual Studio uses the Microsoft Office command system. The key arguments when instantiating an `OleMenuCommand` is the function that implements the command (`AddColumnGuideExecuted`), the function to call when Visual Studio shows a menu with the command (`AddColumnGuideBeforeQueryStatus`), and the command ID. Visual studio calls the query status function before showing a command on a menu so that the command can make itself invisible or greyed out for a particular display of the menu (for example, disabling **Copy** if there's no selection), change its icon, or even change its name (for example, from Add Something to Remove Something), and so on. The command ID must match a command ID declared in the *.vsct* file. The strings for the command set and the column guides add command must match between the *.vsct* file and the *ColumnGuideCommands.cs*.
You create an `OleMenuCommand`. Visual Studio uses the Microsoft Office command system. The key arguments when instantiating an `OleMenuCommand` is the function that implements the command (`AddColumnGuideExecuted`), the function to call when Visual Studio shows a menu with the command (`AddColumnGuideBeforeQueryStatus`), and the command ID. Visual Studio calls the query status function before showing a command on a menu so that the command can make itself invisible or greyed out for a particular display of the menu (for example, disabling **Copy** if there's no selection), change its icon, or even change its name (for example, from Add Something to Remove Something), and so on. The command ID must match a command ID declared in the *.vsct* file. The strings for the command set and the column guides add command must match between the *.vsct* file and the *ColumnGuideCommands.cs*.

The following line provides assistance for when users invoke the command via the Command Window (explained below):

Expand Down
2 changes: 1 addition & 1 deletion docs/install/update-visual-studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ There are two ways to bring up the Update Settings dialog, which allows you to m

![Screenshot showing the Updates settings in the Update available dialog in the IDE.](media/vs-2022/invoke-update-settings-in-the-ide.png)

The **Update Settings** dialog will look something like this. In this example, the Visual studio instance is using the LTSC 17.8 channel.
The **Update Settings** dialog will look something like this. In this example, the Visual Studio instance is using the LTSC 17.8 channel.

![Screenshot showing the Updates settings dialog in the Visual Studio 2022 IDE.](media/vs-2022/update-setting-dialog-one.png)

Expand Down