Skip to content

Commit cf992fa

Browse files
authored
Merge pull request #14040 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch main)
2 parents 1f3f7df + 436791e commit cf992fa

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

docs/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ dialog looks like this:
207207

208208
In this dialog, you can choose what modules you *do not* want Visual Studio to load symbols for.
209209
In this scenario, Visual Studio attempts to load symbols for every module in your debugged
210-
proces (including modules by third parties), unless you add a matching filter to exclude them.
210+
process (including modules by third parties), unless you add a matching filter to exclude them.
211211
The only other way that this behavior will be modified is by your [Just My Code](just-my-code.md)
212212
settings.
213213

docs/msbuild/errors/msb1042.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ MSB1042: Node reuse value is not valid. This version of MSBuild does not support
3838
<!--
3939
{StrBegin="MSBUILD : error MSB1042: "}
4040
UE: This message does not need in-line parameters because the exception takes care of displaying the invalid arg.
41-
This error is shown when a user specifies a node reuse value that is not equivilant to Boolean.TrueString or Boolean.FalseString.
41+
This error is shown when a user specifies a node reuse value that is not equivalent to Boolean.TrueString or Boolean.FalseString.
4242
LOCALIZATION: The prefix "MSBUILD : error MSBxxxx:" should not be localized.
4343
4444
{StrBegin="MSBUILD : error MSB1042: "}

docs/msbuild/how-to-specify-which-target-to-build-first.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
ms.date: 02/28/2025
1010
helpviewer_keywords:
1111
- DefaultTargets attribute [MSBuild]
12-
- MSBuild, specifying the defalut target
12+
- MSBuild, specifying the default target
1313
- MSBuild, DefaultTargets attribute
1414

1515
# Customer intent: As a developer, I want to understand how to specify which MSBuild targets to build first so I can control how my project is built.

docs/msbuild/msbuild-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: MSBuild Server
3-
description: Learn how MSBuild Server supports frequent build scenarios by cacheing build context over multiple builds.
3+
description: Learn how MSBuild Server supports frequent build scenarios by caching build context over multiple builds.
44
ms.date: 10/11/2022
55
ms.topic: overview
66
helpviewer_keywords:

docs/msbuild/msbuild-targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Project systems or project which do not want to reference all dlls or winmd file
449449

450450
===================================================
451451
ExportWindowsMDFile
452-
When a project is generating a winmd file through c# or vb, ect the compiler will create a WinMDModule file. This file needs to be run
452+
When a project is generating a winmd file through c# or vb, etc., the compiler will create a WinMDModule file. This file needs to be run
453453
through the winmdexp tool in order to generate the resulting WinMD file.
454454
===================================================
455455
<Target Name="ExportWindowsMDFile"

docs/snippets/csharp/VS_Snippets_VSSDK/loadtoolboxmembers/cs/loadtoolboxmemberspackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected override void Initialize()
8686
new MenuCommand(MenuItemCallback, menuCommandID );
8787
mcs.AddCommand( menuItem );
8888

89-
// Subscribe to the toolbox intitialized and upgraded events.
89+
// Subscribe to the toolbox initialized and upgraded events.
9090
ToolboxInitialized += new EventHandler(OnRefreshToolbox);
9191
ToolboxUpgraded += new EventHandler(OnRefreshToolbox);
9292
}

docs/snippets/csharp/VS_Snippets_VSSDK/ui_usersettings_toolsoptionpages/cs/uiusersettingstoolsoptionspagespackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace Company.UIUserSettingsToolsOptionsPages
3535
// This attribute tells the registration utility (regpkg.exe) that this class needs
3636
// to be registered as package.
3737
[PackageRegistration(UseManagedResourcesOnly = true)]
38-
// A Visual Studio component can be registered under different regitry roots; for instance
38+
// A Visual Studio component can be registered under different registry roots; for instance
3939
// when you debug your package you want to register it in the experimental hive. This
4040
// attribute specifies the registry root to use if no one is provided to regpkg.exe with
4141
// the /root switch.

docs/snippets/visualbasic/VS_Snippets_VSSDK/forcevspackageload/vb/forcevspackageloadvb/forcevspackageloadvbpackage.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Imports Microsoft.VisualStudio.Shell
2525
' The PackageRegistration attribute tells the registration utility (regpkg.exe) that this class needs
2626
' to be registered as package.
2727
'
28-
' A Visual Studio component can be registered under different regitry roots; for instance
28+
' A Visual Studio component can be registered under different registry roots; for instance
2929
' when you debug your package you want to register it in the experimental hive. The DefaultRegistryRoot
3030
' attribute specifies the registry root to use if no one is provided to regpkg.exe with
3131
' the /root switch.

docs/snippets/visualbasic/VS_Snippets_VSSDK/menutext/vb/menutextpackage.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Imports System.Security.Permissions
2626
' The PackageRegistration attribute tells the registration utility (regpkg.exe) that this class needs
2727
' to be registered as package.
2828
'
29-
' A Visual Studio component can be registered under different regitry roots; for instance
29+
' A Visual Studio component can be registered under different registry roots; for instance
3030
' when you debug your package you want to register it in the experimental hive. The DefaultRegistryRoot
3131
' attribute specifies the registry root to use if no one is provided to regpkg.exe with
3232
' the /root switch.

docs/snippets/visualbasic/VS_Snippets_VSSDK/ui_usersettings_toolsoptionpages/vb/uiusersettingstoolsoptionspagespackage.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Imports Company.UIUserSettingsToolsOptionsPages.Company.UIUserSettingsToolsOptio
3535
' The PackageRegistration attribute tells the registration utility (regpkg.exe) that this class needs
3636
' to be registered as package.
3737
'
38-
' A Visual Studio component can be registered under different regitry roots; for instance
38+
' A Visual Studio component can be registered under different registry roots; for instance
3939
' when you debug your package you want to register it in the experimental hive. The DefaultRegistryRoot
4040
' attribute specifies the registry root to use if no one is provided to regpkg.exe with
4141
' the /root switch.

0 commit comments

Comments
 (0)