Skip to content

Commit 1bfca55

Browse files
authored
Merge branch 'main' into repo_sync_working_branch
2 parents 91bf37f + cfd6347 commit 1bfca55

5 files changed

+5
-5
lines changed

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
@@ -26,7 +26,7 @@ When you want to extend project systems, you can use commands and command groups
2626
|IDM_VS_TOOL_PROJWIN|The **Solution Explorer** toolbar.|
2727

2828
## Shortcut Menus
29-
The following table shows the shortcut menus that apply when a single node is selected in the **Solution Explorer**, or when there are multiple homogenous selections in the **Solution Explorer**, which is when all selected nodes are of the same type.
29+
The following table shows the shortcut menus that apply when a single node is selected in the **Solution Explorer**, or when there are multiple homogeneous selections in the **Solution Explorer**, which is when all selected nodes are of the same type.
3030

3131
|Shortcut menu|Description|
3232
|-------------------|-----------------|

docs/extensibility/internals/properties-display-grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The two-column list shows configuration-independent properties that can be chang
2222

2323
2. Set the `pfHide` parameter in <xref:Microsoft.VisualStudio.Shell.Interop.IVsPerPropertyBrowsing.HideProperty%2A> to `TRUE`.
2424

25-
To push information to the **Properties** window, the IDE uses <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer>. <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer> is called by VSPackages for each window that contains selectable objects with related properties to be displayed in the **Properties** window. **Solution Explorer**'s implementation of <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer> calls `GetProperty` using [__VSHPROPID.VSHPROPID_BrowseObject](<xref:Microsoft.VisualStudio.Shell.Interop.__VSHPROPID.VSHPROPID_BrowseObject>) in your project hierarchy to acquire the browseable objects in the hierarchy.
25+
To push information to the **Properties** window, the IDE uses <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer>. <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer> is called by VSPackages for each window that contains selectable objects with related properties to be displayed in the **Properties** window. **Solution Explorer**'s implementation of <xref:Microsoft.VisualStudio.Shell.Interop.ISelectionContainer> calls `GetProperty` using [__VSHPROPID.VSHPROPID_BrowseObject](<xref:Microsoft.VisualStudio.Shell.Interop.__VSHPROPID.VSHPROPID_BrowseObject>) in your project hierarchy to acquire the browsable objects in the hierarchy.
2626

2727
If your VSPackage does not support [__VSHPROPID.VSHPROPID_BrowseObject](<xref:Microsoft.VisualStudio.Shell.Interop.__VSHPROPID.VSHPROPID_BrowseObject>), the IDE attempts to use <xref:Microsoft.VisualStudio.Shell.Interop.IVsHierarchy.GetProperty%2A> using the value for [__VSHPROPID.VSHPROPID_SelContainer](<xref:Microsoft.VisualStudio.Shell.Interop.__VSHPROPID.VSHPROPID_SelContainer>) that the hierarchy item or items supply.
2828

docs/extensibility/walkthrough-creating-a-view-adornment-commands-and-settings-column-guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ namespace ColumnGuides
7575
{
7676
internal static class GuidesSettingsManager
7777
{
78-
// Because my code is always called from the UI thred, this succeeds.
78+
// Because my code is always called from the UI thread, this succeeds.
7979
internal static SettingsManager VsManagedSettingsManager =
8080
new ShellSettingsManager(ServiceProvider.GlobalProvider);
8181

docs/extensibility/walkthrough-publishing-a-visual-studio-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ You can remove the extension from Visual Studio Marketplace and from your comput
227227

228228
2. In the upper-right hand corner, click **Publish** extensions. Pick the publisher that you used to publish (eg: **TestPublish**). The listing for extensions will appear.
229229

230-
3. Click on extenion menu button → click **Remove**. You are asked to confirm if you want to remove the extension.
230+
3. Click on extension menu button → click **Remove**. You are asked to confirm if you want to remove the extension.
231231

232232
![Screenshot that shows Remove menu item.](media/remove-extension.png)
233233

docs/get-started/csharp/tutorial-windows-forms-match-game-icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ To get your game to work this way, add a <xref:System.Windows.Forms.Control.Clic
163163
1. Then, hold the **Ctrl** key while you select each of the other labels.
164164
Be sure that every label is selected.
165165

166-
1. In the **Properties** window, select the **Events** button, which is a lightening bolt.
166+
1. In the **Properties** window, select the **Events** button, which is a lightning bolt.
167167
For the **Click** event, select **label1_Click** in the box.
168168

169169
![Screenshot shows the Properties window showing Click event.](../media/tutorial-windows-forms-match-game-icons/click-event.png)

0 commit comments

Comments
 (0)