Skip to content

Commit 90ac352

Browse files
authored
Merge pull request #8657 from MicrosoftDocs/main638038083245958482sync_temp
Repo sync for protected CLA branch
2 parents 0848381 + 42f9a59 commit 90ac352

File tree

4 files changed

+31
-20
lines changed

4 files changed

+31
-20
lines changed

docs/containers/edit-and-refresh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: jmartens
77
ms.assetid: 480e3062-aae7-48ef-9701-e4f9ea041382
88
ms.topic: how-to
99
ms.workload: multiple
10-
ms.date: 10/27/2021
10+
ms.date: 10/07/2022
1111
ms.technology: vs-container-tools
1212
---
1313
# Debug apps in a local Docker container

docs/containers/troubleshooting-docker-errors.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: Troubleshoot problems you encounter when using Visual Studio to cre
44
ms.technology: vs-container-tools
55
author: ghogen
66
manager: jmartens
7-
87
ms.assetid: 346f70b9-7b52-4688-a8e8-8f53869618d3
98
ms.devlang: dotnet
109
ms.topic: troubleshooting
@@ -97,4 +96,10 @@ To resolve this issue, right-click the Docker for Windows icon in the System Tra
9796

9897
## Other issues
9998

100-
For any other issues, see the [Microsoft/DockerTools](https://github.com/microsoft/dockertools/issues) repo.
99+
For any other issues you encounter, see [Microsoft/DockerTools](https://github.com/microsoft/dockertools/issues) issues.
100+
101+
## See also
102+
103+
- [Visual Studio troubleshooting](/troubleshoot/visualstudio/welcome-visual-studio/)
104+
- [Container Tools error messages](container-tools-error-messages.md)
105+

docs/debugger/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@
439439
- name: Debug .NET Core on Linux using SSH
440440
href: remote-debugging-dotnet-core-linux-with-ssh.md
441441
- name: Debug .NET Core on AKS >>
442-
href: /visualstudio/bridge/bridge-to-kubernetes-vs.md
442+
href: /visualstudio/bridge/bridge-to-kubernetes-vs
443443
- name: Debug with Container Tools >>
444444
href: ../containers/edit-and-refresh.md
445445
- name: Application types

docs/ide/how-to-view-save-and-configure-build-log-files.md

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: 'How to: View, save, and configure build log files | Microsoft Docs'
3-
description: Learn how you can view, save, and configure build log files. These files provide useful information for tasks like troubleshooting a build failure.
2+
title: 'How to: View, save, and configure build log files'
3+
description: Learn how you can view, save, and configure build log files. These files provide information such as the command lines used for the compiler and other tools, which can help you troubleshoot build failures.
44
ms.custom: SEO-VS-2020
5-
ms.date: 09/12/2022
5+
ms.date: 11/11/2022
66
ms.technology: vs-ide-compile
77
ms.topic: how-to
88
ms.assetid: 75d38b76-26d6-4f43-bbe7-cbacd7cc81e7
@@ -16,11 +16,11 @@ ms.workload:
1616

1717
[!INCLUDE [Visual Studio](~/includes/applies-to-version/vs-windows-only.md)]
1818

19-
After you build a project in the Visual Studio IDE, you can view information about that build in the **Output** window. By using this information, you can, for example, troubleshoot a build failure.
19+
After you build a project in the Visual Studio IDE, you can view information about that build in the **Output** window. By using this information, you can troubleshoot a build failure, view the exact command lines used for all the build tools, or get full diagnostic information about the entire build process.
2020

2121
- For C++ projects, you can also view the same information in a log file that's created and saved when you build a project.
2222

23-
- For managed code projects, you can click in the build output window and press **Ctrl**+**S**. Visual Studio prompts you for a location to save the information from the **Output** window into a log file.
23+
- For .NET projects, you can click in the build output window and press **Ctrl**+**S**. Visual Studio prompts you for a location to save the information from the **Output** window into a log file.
2424

2525
You can also use the IDE to specify what kinds of information you want to view about each build.
2626

@@ -48,20 +48,25 @@ You can also generate logs by running MSBuild directly from the command line, us
4848

4949
2. On the **Projects and Solutions** page, choose the **Build and Run** page.
5050

51-
3. In the **MSBuild project build output verbosity** list, choose one of the following values, and then choose the **OK** button.
51+
3. In the **MSBuild project build output verbosity** list, choose one of the values, and then choose the **OK** button.
5252

53-
|Verbosity level|Description|
54-
| - |-----------------|
55-
|**Quiet**|Displays a summary of the build only.|
56-
|**Minimal**|Displays a summary of the build and errors, warnings, and messages that are categorized as highly important.|
57-
|**Normal**|Displays a summary of the build; errors, warnings, and messages that are categorized as highly important; and the main steps of the build. You'll use this level of detail most frequently.|
58-
|**Detailed**|Displays a summary of the build; errors, warnings, and messages that are categorized as highly important; all of the steps of the build; and messages that are categorized as of normal importance.|
59-
|**Diagnostic**|Displays all data that's available for the build. You can use this level of detail to help debug issues with custom build scripts and other build issues.|
53+
The following table shows how the log verbosity (column values) affects which types of message (row values) are logged.
6054

61-
For more information, see [Options dialog box, Projects and Solutions, Build and Run](../ide/reference/options-dialog-box-projects-and-solutions-build-and-run.md) and <xref:Microsoft.Build.Framework.LoggerVerbosity>.
55+
| Message type / Verbosity | Quiet | Minimal | Normal | Detailed | Diagnostic |
56+
|---------------------------------------|:-----:|:-------:|:------:|:--------:|:----------:|
57+
| Errors ||||||
58+
| Warnings ||||||
59+
| High-importance Messages | |||||
60+
| Normal-importance Messages | | ||||
61+
| Low-importance Messages | | | |||
62+
| Additional MSBuild-engine information | | | | ||
6263

63-
> [!IMPORTANT]
64-
> You must rebuild the project for your changes to take effect in the **Output** window (all projects) and the *\<ProjectName>.txt* file (C++ projects only).
64+
If you want to see the command lines used for the compiler and other tools, choose at least the **Detailed** verbosity level.
65+
66+
For more information, see [Options dialog box, Projects and Solutions, Build and Run](../ide/reference/options-dialog-box-projects-and-solutions-build-and-run.md) and <xref:Microsoft.Build.Framework.LoggerVerbosity>.
67+
68+
> [!IMPORTANT]
69+
> You must rebuild the project for your changes to take effect in the **Output** window (all projects) and the *\<ProjectName>.txt* file (C++ projects only).
6570
6671
## Use binary logs to make it easier to browse large log files
6772

@@ -75,3 +80,4 @@ Binary logs are an optional feature for .NET projects that lets you have a riche
7580

7681
- [Build and clean projects and solutions in Visual Studio](../ide/building-and-cleaning-projects-and-solutions-in-visual-studio.md)
7782
- [Compile and build](../ide/compiling-and-building-in-visual-studio.md)
83+
- [Obtaining build logs with MSBuild](../msbuild/obtaining-build-logs-with-msbuild.md)

0 commit comments

Comments
 (0)