Skip to content

Commit c30c6a3

Browse files
Merge pull request #14187 from MicrosoftDocs/main
Auto Publish – main to live - 2025-08-08 22:30 UTC
2 parents b46b647 + e72454a commit c30c6a3

18 files changed

+38
-28
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "docs/ide/reference/paste-json-xml.md",
5+
"redirect_url": "/visualstudio/ide/paste-json-xml",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path": "docs/ide/reference/immediate-window.md",
10+
"redirect_url": "/visualstudio/ide/immediate-window",
11+
"redirect_document_id": false
12+
},
313
{
414
"source_path": "docs/ide/reference/miscellaneous-files.md",
515
"redirect_url": "/visualstudio/ide/miscellaneous-files",

docs/debugger/debugger-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can open most debugger windows while you're debugging your program. To see a
2222
|Autos|CTRL+ALT+V, A|[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)|
2323
|Locals|CTRL+ALT+V, L|[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)|
2424
|Call Stacks|CTRL+ALT+C|[How to: Use the Call Stack Window](../debugger/how-to-use-the-call-stack-window.md)|
25-
|Immediate|CTRL+ALT+I|[Immediate Window](../ide/reference/immediate-window.md)|
25+
|Immediate|CTRL+ALT+I|[Immediate Window](../ide/immediate-window.md)|
2626
|Parallel Stacks|CTR:+SHIFT+D, S|[Using the Parallel Stacks Window](../debugger/using-the-parallel-stacks-window.md)|
2727
|Parallel Watch|CTR:+SHIFT+D, (1, 2, 3, 4)|[Get started Debugging Multithreaded Applications](../debugger/get-started-debugging-multithreaded-apps.md)|
2828
|Threads|CTRL+ALT+H|[View threads in the Visual Studio debugger](../debugger/walkthrough-debugging-a-multithreaded-application.md)|

docs/debugger/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@
362362
href: /visualstudio/bridge/bridge-to-kubernetes-vs
363363
- name: Debug with Container Tools >>
364364
href: ../containers/edit-and-refresh.md
365-
- name: Immediate window
366-
href: ../ide/reference/immediate-window.md
365+
- name: Use the Immediate window
366+
href: ../ide/immediate-window.md
367367
- name: Work with...
368368
items:
369369
- name: .NET

docs/debugger/walkthrough-debugging-at-design-time.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To debug XAML code behind an app from the XAML designer, such as declarative dat
2323

2424
## Use the Immediate window
2525

26-
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/reference/immediate-window.md)
26+
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/immediate-window.md)
2727

2828
The following example is in Visual Basic. You can also use the **Immediate** window at design time in C#, F#, and C++/CLI apps. For C++/CLI, compile without the /clr option to use the Immediate window.
2929

docs/ide/reference/immediate-window.md renamed to docs/ide/immediate-window.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The **Immediate** window supports IntelliSense.
2626

2727
## Display the values of variables
2828

29-
The **Immediate** window is useful when you debug an app. For example, to check the value of a variable `varA`, you can use the [Print command](../../ide/reference/print-command.md):
29+
The **Immediate** window is useful when you debug an app. For example, to check the value of a variable `varA`, you can use the [Print command](../ide/reference/print-command.md):
3030

3131
```cmd
3232
>Debug.Print varA
@@ -41,7 +41,7 @@ The question mark (`?`) is an alias for `Debug.Print`, so this command can also
4141
Both versions of this command return the value of the variable `varA`.
4242

4343
> [!TIP]
44-
> To issue a Visual Studio command in the **Immediate** window, you must preface the command with a greater than sign (`>`). To enter multiple commands, switch to the [Command window](command-window.md).
44+
> To issue a Visual Studio command in the **Immediate** window, you must preface the command with a greater than sign (`>`). To enter multiple commands, switch to the [Command window](../ide/reference/command-window.md).
4545
4646
## Design-time expression evaluation
4747

@@ -71,7 +71,7 @@ You can use the **Immediate** window to execute a function or subroutine at desi
7171

7272
The **Immediate** window runs `MyFunction` and displays `4`.
7373

74-
If the function or subroutine contains a breakpoint, Visual Studio breaks execution at the appropriate point. You can then use the debugger windows to examine your program state. For more information, see [Walkthrough: Debug at design time](../../debugger/walkthrough-debugging-at-design-time.md).
74+
If the function or subroutine contains a breakpoint, Visual Studio breaks execution at the appropriate point. You can then use the debugger windows to examine your program state. For more information, see [Walkthrough: Debug at design time](../debugger/walkthrough-debugging-at-design-time.md).
7575

7676
You can't use design-time expression evaluation in project types that require starting up an execution environment, including Visual Studio Tools for Office projects, web projects, Smart Device projects, and SQL projects.
7777

@@ -124,9 +124,9 @@ In some settings configurations, first-chance exception notifications are displa
124124

125125
## Related content
126126

127-
- [Navigating through code by using the debugger](../../debugger/navigating-through-code-with-the-debugger.md)
128-
- [Command Window](../../ide/reference/command-window.md)
129-
- [Overview of the debugger](../../debugger/debugger-feature-tour.md)
130-
- [Debug at design time](../../debugger/walkthrough-debugging-at-design-time.md)
131-
- [Visual Studio Command Aliases](../../ide/reference/visual-studio-command-aliases.md)
132-
- [Use regular expressions in Visual Studio](../../ide/using-regular-expressions-in-visual-studio.md)
127+
- [Navigating through code by using the debugger](../debugger/navigating-through-code-with-the-debugger.md)
128+
- [Command Window](../ide/reference/command-window.md)
129+
- [Overview of the debugger](../debugger/debugger-feature-tour.md)
130+
- [Debug at design time](../debugger/walkthrough-debugging-at-design-time.md)
131+
- [Visual Studio Command Aliases](../ide/reference/visual-studio-command-aliases.md)
132+
- [Use regular expressions in Visual Studio](../ide/using-regular-expressions-in-visual-studio.md)

docs/ide/reference/paste-json-xml.md renamed to docs/ide/paste-json-xml.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In Visual Studio, you can copy text from JSON or XML files and then paste the te
1616
:::image type="content" source="media/paste-json-xml-class-sml.png" alt-text="Screenshot of the Paste Special option from the Edit menu in Visual Studio." lightbox="media/paste-json-xml-class-lrg.png":::
1717

1818
> [!TIP]
19-
> If you don't see the **Paste Special** option on the **Edit** menu, make sure that you have at least one of the following [**workloads**](../../install/modify-visual-studio.md#change-workloads-or-individual-components) installed: **ASP.NET and web development**, **Azure development**, or **.NET desktop development**. Then, make sure that you select the program file for your app. For example, for a C# app, select the **Program.cs** file in [Solution Explorer](../use-solution-explorer.md).
19+
> If you don't see the **Paste Special** option on the **Edit** menu, make sure that you have at least one of the following [**workloads**](../install/modify-visual-studio.md#change-workloads-or-individual-components) installed: **ASP.NET and web development**, **Azure development**, or **.NET desktop development**. Then, make sure that you select the program file for your app. For example, for a C# app, select the **Program.cs** file in [Solution Explorer](../ide/use-solution-explorer.md).
2020
2121
**JSON** (**J**ava**S**cript **O**bject **N**otation) and **XML** (e**X**tensible **M**arkup **L**anguage) are similar in that they're both used to store and transport data. JSON, however, is less verbose and can use arrays.
2222

@@ -163,5 +163,5 @@ namespace PasteDemo
163163

164164
## See also
165165

166-
- [Features of the code editor](../../ide/writing-code-in-the-code-and-text-editor.md)
167-
- [Productivity guide for Visual Studio](../productivity-features.md)
166+
- [Features of the code editor](../ide/writing-code-in-the-code-and-text-editor.md)
167+
- [Productivity guide for Visual Studio](../ide/productivity-features.md)

0 commit comments

Comments
 (0)