Skip to content

Commit 5973239

Browse files
committed
Fix links etc
1 parent 204d4e3 commit 5973239

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,30 @@
55
"redirect_url": "/visualstudio/ide/command-window",
66
"redirect_document_id": true
77
},
8-
{
8+
{
99
"source_path": "docs/ide/reference/error-list-window.md",
1010
"redirect_url": "/visualstudio/ide/error-list-window",
1111
"redirect_document_id": true
1212
},
13-
{
13+
{
1414
"source_path": "docs/ide/reference/output-window.md",
1515
"redirect_url": "/visualstudio/ide/output-window",
1616
"redirect_document_id": true
1717
},
18-
{
18+
{
1919
"source_path": "docs/ide/reference/user-notifications-window.md",
2020
"redirect_url": "/visualstudio/ide/user-notifications-window",
2121
"redirect_document_id": true
2222
},
23-
{
23+
{
2424
"source_path": "docs/ide/reference/trust-settings.md",
2525
"redirect_url": "/visualstudio/ide/trust-settings",
2626
"redirect_document_id": true
2727
},
28-
{
28+
{
2929
"source_path": "docs/ide/reference/team-explorer-reference.md",
3030
"redirect_url": "/visualstudio/ide/team-explorer-reference",
3131
"redirect_document_id": true
32-
},
33-
{
34-
"source_path": "docs/ide/reference/command-window.md",
35-
"redirect_url": "/visualstudio/ide/command-window",
36-
"redirect_document_id": true
3732
},
3833
{
3934
"source_path": "docs/ide/reference/options-text-editor-all-languages-tabs.md",

docs/ide/command-window.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,5 +106,5 @@ If, for example, you want to open a file that has a path containing spaces, you
106106

107107
## See also
108108

109-
- [Visual Studio Command Aliases](../../ide/reference/visual-studio-command-aliases.md)
110-
- [Visual Studio Commands](../../ide/reference/visual-studio-commands.md)
109+
- [Visual Studio Command Aliases](reference/visual-studio-command-aliases.md)
110+
- [Visual Studio Commands](reference/visual-studio-commands.md)

docs/ide/output-window.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ The **Output** pane selected in the **Show output from** list displays output fr
5656

5757
To display the **Output** window whenever you build a project, in the **Options** dialog box, on the **Projects and Solutions** > **General** page, select **Show Output window when build starts**. Then, with a code file open for editing, choose **Go to Next Message** and **Go To Previous Message** on the **Output** window toolbar to select entries in the **Output** pane. As you do this, the insertion point in the code editor jumps to the line of code where the selected problem occurs.
5858

59-
Certain IDE features and commands invoked in the [Command window](../../ide/reference/command-window.md) deliver their output to the **Output** window. Output from external tools such as *.bat* and *.com* files, which is typically displayed in the command window, is routed to an **Output** pane when you select the **Use Output Window** option in [Manage external tools](../../ide/managing-external-tools.md). Many other kinds of messages can be displayed in **Output** panes as well. For example, when Transact-SQL syntax in a stored procedure is checked against a target database, the results are displayed in the **Output** window.
59+
Certain IDE features and commands invoked in the [Command window](command-window.md) deliver their output to the **Output** window. Output from external tools such as *.bat* and *.com* files, which is typically displayed in the command window, is routed to an **Output** pane when you select the **Use Output Window** option in [Manage external tools](managing-external-tools.md). Many other kinds of messages can be displayed in **Output** panes as well. For example, when Transact-SQL syntax in a stored procedure is checked against a target database, the results are displayed in the **Output** window.
6060

61-
You can also program your own applications to write diagnostic messages at run time to an **Output** pane. To do this, use members of the <xref:System.Diagnostics.Debug> class or <xref:System.Diagnostics.Trace> class in the <xref:System.Diagnostics> namespace of the .NET API. Members of the <xref:System.Diagnostics.Debug> class display output when you build Debug configurations of your solution or project; members of the <xref:System.Diagnostics.Trace> class display output when you build either Debug or Release configurations. For more information, see [Diagnostic messages in the Output window](../../debugger/diagnostic-messages-in-the-output-window.md).
61+
You can also program your own applications to write diagnostic messages at run time to an **Output** pane. To do this, use members of the <xref:System.Diagnostics.Debug> class or <xref:System.Diagnostics.Trace> class in the <xref:System.Diagnostics> namespace of the .NET API. Members of the <xref:System.Diagnostics.Debug> class display output when you build Debug configurations of your solution or project; members of the <xref:System.Diagnostics.Trace> class display output when you build either Debug or Release configurations. For more information, see [Diagnostic messages in the Output window](../debugger/diagnostic-messages-in-the-output-window.md).
6262

6363
In C++, you can create custom build steps and build events whose warnings and errors are displayed and counted in the **Output** pane. By pressing **F1** on a line of output, you can display an appropriate help topic. For more information, see [Format the output of a custom build step](/cpp/build/formatting-the-output-of-a-custom-build-step-or-build-event).
6464

@@ -68,12 +68,12 @@ If you use autoscrolling in the **Output** window and then navigate by using the
6868

6969
## Structured Diagnostics
7070

71-
C++ MSBuild projects might emit structured diagnostics. The level of indentation of a diagnostic in the **Output** window represents the nested structure of the information. Enable or disable indentation with the **Project** > **Properties** > **Advanced** > **Enable MSVC Structured Output** option. You can affect several projects by creating a [Directory.Build.props](/visualstudio/msbuild/customize-by-directory) file with the **UseStructuredOutput** property defined to true or false.
71+
C++ MSBuild projects might emit structured diagnostics. The level of indentation of a diagnostic in the **Output** window represents the nested structure of the information. Enable or disable indentation with the **Project** > **Properties** > **Advanced** > **Enable MSVC Structured Output** option. You can affect several projects by creating a [Directory.Build.props](../msbuild/customize-by-directory) file with the **UseStructuredOutput** property defined to true or false.
7272

7373
## See also
7474

75-
- [Diagnostic messages in the Output window](../../debugger/diagnostic-messages-in-the-output-window.md)
75+
- [Diagnostic messages in the Output window](../debugger/diagnostic-messages-in-the-output-window.md)
7676
- [How to: Control the Output window](/previous-versions/ht6z4e28(v=vs.140))
77-
- [Compile and build](../../ide/compiling-and-building-in-visual-studio.md)
78-
- [Understand build configurations](../../ide/understanding-build-configurations.md)
77+
- [Compile and build](compiling-and-building-in-visual-studio.md)
78+
- [Understand build configurations](understanding-build-configurations.md)
7979
- [Class library overview](/dotnet/standard/class-library-overview)

docs/ide/team-explorer-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ This article provides links to Azure DevOps articles about the various functions
1616
Use the **Team Explorer** tool window to coordinate your code efforts with other team members to develop a project, and to manage work that's assigned to you, your team, or your projects. **Team Explorer** connects Visual Studio to Git and GitHub repositories, Team Foundation version control (TFVC) repositories, and projects hosted on [Azure DevOps Services](/azure/devops/user-guide/what-is-azure-devops-services) or an on-premises [Azure DevOps Server](/azure/devops/index-all) (formerly known as Team Foundation Server, or TFS). You can manage source code, work items, and builds.
1717

1818
> [!IMPORTANT]
19-
> Starting with the release of Visual Studio 2019 [**version 16.8**](/visualstudio/releases/2019/release-notes-history), the Git version control experience is the default. If you'd like to learn more about how it compares with Team Explorer, see the [**Side-by-side comparison of Git and Team Explorer**](../../version-control/git-team-explorer-feature-comparison.md) page.
19+
> Starting with the release of Visual Studio 2019 [**version 16.8**](/visualstudio/releases/2019/release-notes-history), the Git version control experience is the default. If you'd like to learn more about how it compares with Team Explorer, see the [**Side-by-side comparison of Git and Team Explorer**](../version-control/git-team-explorer-feature-comparison.md) page.
2020
2121
## Home page
2222

23-
After you [connect to a project](../connect-team-project.md) in **Team Explorer**, the following links become available in the **Project** section:
23+
After you [connect to a project](connect-team-project.md) in **Team Explorer**, the following links become available in the **Project** section:
2424

2525
- [Clone repository](/azure/devops/repos/git/clone)
2626
- [Web Portal](/azure/devops/project/navigation/index)
@@ -109,4 +109,4 @@ The **Settings** page lets you configure administrative features for either a pr
109109

110110
## See also
111111

112-
- [Connect to projects in Team Explorer](../../ide/connect-team-project.md)
112+
- [Connect to projects in Team Explorer](connect-team-project.md)

docs/ide/trust-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@ To remove trusted paths, follow these steps:
167167

168168
## See also
169169

170-
[Build an application in Visual Studio](../walkthrough-building-an-application.md)
170+
[Build an application in Visual Studio](walkthrough-building-an-application.md)

0 commit comments

Comments
 (0)