Skip to content

Commit bee0454

Browse files
authored
Merge pull request #13990 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 9f25c3f + b302e77 commit bee0454

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/containers/container-launch-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The following table shows the properties that can be set in this section:
8383

8484
Not all settings are available in the UI, for example, `useSSL`. To change those settings, edit `launchSettings.json` directly.
8585

86-
The setting `DockerfileRunArguments` is superceded in Visual Studio 2022 17.12 and later by `containerRunArguments`, which can be set in the Launch Profiles UI as `Container run arguments`.
86+
The setting `DockerfileRunArguments` is superseded in Visual Studio 2022 17.12 and later by `containerRunArguments`, which can be set in the Launch Profiles UI as `Container run arguments`.
8787

8888
> [!NOTE]
8989
> If the same setting is found in both the project file and in the launch settings file, the value in the launch settings file takes precedence.

docs/extensibility/debugger/reference/idebugbreakpointchecksumrequest2-getchecksum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ bool CDebugProgram::DoChecksumsMatch(CDebugPendingBreakpoint *pPending, CDebugCo
8585
CoTaskMemFree(data.pBytes);
8686
}
8787
else
88-
fRet = true; // checksums not available - user disabed checksums
88+
fRet = true; // checksums not available - user disabled checksums
8989
}
9090
else
9191
fRet = true; // we couldn't get checksum from UI - default to past behavior

docs/extensibility/debugger/reference/idebugexpressioncontext2-parsetext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ HRESULT CEnvBlock::ParseText(
110110
hr = S_OK;
111111
// If the program cannot successfully get the environment variable.
112112
} else {
113-
// Set the errror message and return E_FAIL.
113+
// Set the error message and return E_FAIL.
114114
*pbstrError = SysAllocString(L"No such environment variable.");
115115
hr = E_FAIL;
116116
}

docs/extensibility/visualstudio.extensibility/inside-the-sdk/advanced-remote-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ With the code above, the `Color` property value is converted to a `LinearGradien
365365

366366
## Remote UI and threads
367367

368-
*Async command* callbacks (and `INotifyPropertyChanged` callbacks for values updated by the UI through data biding) are raised on random thread pool threads. Callbacks are raised one at a time and won't overlap until the code yields control (using an `await` expression).
368+
*Async command* callbacks (and `INotifyPropertyChanged` callbacks for values updated by the UI through data binding) are raised on random thread pool threads. Callbacks are raised one at a time and won't overlap until the code yields control (using an `await` expression).
369369

370370
This behavior can be changed by passing a [NonConcurrentSynchronizationContext](/dotnet/api/microsoft.visualstudio.threading.nonconcurrentsynchronizationcontext) to the [`RemoteUserControl`](/dotnet/api/microsoft.visualstudio.extensibility.ui.remoteusercontrol) constructor. In that case, you can use the provided synchronization context for all *async command* and `INotifyPropertyChanged` callbacks related to that control.
371371

docs/extensibility/visualstudio.extensibility/tool-window/tool-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The [`ToolWindow`](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.
4646
| --------- |----- | -------- | ----------- | ------------- |
4747
| [Placement](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowconfiguration.placement#microsoft-visualstudio-extensibility-toolwindows-toolwindowconfiguration-placement) | ToolWindowPlacement | No | The location in Visual Studio where the tool window should be opened the first time. [`ToolWindowPlacement.DockedTo`](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowplacement.dockedto) allows docking the tool window to a GUID matching an old VSIX-style tool window ID. See more about [ToolWindowPlacement](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowplacement). | ToolWindowPlacement.Floating |
4848
| [DockDirection](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowconfiguration.dockdirection#microsoft-visualstudio-extensibility-toolwindows-toolwindowconfiguration-dockdirection) | Dock | No | The direction relative to the placement where the tool window should be docked when opened the first time. See [Dock](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.dock). | Dock.None |
49-
| [AllowAutoCreation](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowconfiguration.allowautocreation#microsoft-visualstudio-extensibility-toolwindows-toolwindowconfiguration-allowautocreation) | Bool | No | Specifies whether or not the tool window can be created automatically. Setting this paramater to false means that tool windows that are open when Visual Studio closes don't automatically restore when Visual Studio is opened again. | `true` |
49+
| [AllowAutoCreation](/dotnet/api/microsoft.visualstudio.extensibility.toolwindows.toolwindowconfiguration.allowautocreation#microsoft-visualstudio-extensibility-toolwindows-toolwindowconfiguration-allowautocreation) | Bool | No | Specifies whether or not the tool window can be created automatically. Setting this parameter to false means that tool windows that are open when Visual Studio closes don't automatically restore when Visual Studio is opened again. | `true` |
5050

5151
### Example
5252

0 commit comments

Comments
 (0)