Skip to content

Commit 1937061

Browse files
committed
Merge branch 'master' of github.com:MicrosoftDocs/visualstudio-docs-pr into tglee-vsmetapatch
2 parents a5affd7 + 63e5724 commit 1937061

23 files changed

+120
-232
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,16 @@
652652
"redirect_url": "/visualstudio/debugger/graphics/walkthrough-using-graphics-diagnostics-to-debug-a-compute-shader",
653653
"redirect_document_id": false
654654
},
655+
{
656+
"source_path": "docs/debugger/first-look-at-the-debugger.md",
657+
"redirect_url": "/visualstudio/debugger/getting-started-with-the-debugger",
658+
"redirect_document_id": false
659+
},
660+
{
661+
"source_path": "docs/debugger/debugger-basics.md",
662+
"redirect_url": "/visualstudio/debugger/getting-started-with-the-debugger",
663+
"redirect_document_id": false
664+
},
655665
{
656666
"source_path": "docs/deployment/installshield-limited-edition.md",
657667
"redirect_url": "/visualstudio/deployment/deploying-applications-services-and-components",

docs/debugger/TOC.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# [Debugger documentation](index.md)
2-
# Overview
3-
## [Debugger feature tour](debugger-feature-tour.md)
2+
# [Overview](debugger-overview.md)
43
# Quickstarts
4+
## [First look at the debugger](debugger-feature-tour.md)
55
## [Debug a managed app](quickstart-debug-with-managed.md)
66
## [Debug a native app](quickstart-debug-with-cplusplus.md)
77
## [Debug an ASP.NET app](quickstart-debug-aspnet.md)
@@ -26,9 +26,6 @@
2626
### [View string values in a visualizer](string-visualizer-dialog-box.md)
2727
### [View disassembly code](how-to-use-the-disassembly-window.md)
2828
#### [How to: Page up or down in memory](how-to-page-up-or-down-in-memory.md)
29-
### [View the call stack](how-to-use-the-call-stack-window.md)
30-
#### [Mixed code and missing information in the Call Stack window](mixed-code-and-missing-information-in-the-call-stack-window.md)
31-
#### [How to: Step out of managed code when native frames are missing from the Call Stack window](how-to-step-out-of-managed-code-when-native-frames-are-missing-from-the-call-stack-window.md)
3229
### [View register values](how-to-use-the-registers-window.md)
3330
#### [About the Registers window](debugging-basics-registers-window.md)
3431
#### [How to: Display and hide register groups](how-to-display-and-hide-register-groups.md)

docs/debugger/debug-live-azure-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.suite: ""
88
ms.technology:
99
- "vs-ide-debug"
1010
ms.tgt_pltfrm: ""
11-
ms.topic: "article"
11+
ms.topic: "tutorial"
1212
helpviewer_keywords:
1313
- "debugger"
1414
ms.assetid: adb22512-4d4d-40e5-9564-1af421b7087e

docs/debugger/debugger-basics.md

Lines changed: 0 additions & 68 deletions
This file was deleted.

docs/debugger/debugger-feature-tour.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
title: "Debugger Feature Tour | Microsoft Docs"
3-
ms.custom: "H1HackMay2017"
4-
ms.date: "05/19/2017"
2+
title: "Debugger Feature Tour - Visual Studio | Microsoft Docs"
3+
description: Take a tour of the Visual Studio debugger
4+
ms.custom: "mvc"
5+
ms.date: "03/27/2018"
56
ms.reviewer: ""
67
ms.suite: ""
78
ms.technology:
89
- "vs-ide-debug"
910
ms.tgt_pltfrm: ""
10-
ms.topic: "article"
11+
ms.topic: "quickstart"
1112
helpviewer_keywords:
1213
- "debugger"
1314
ms.assetid: c763d706-3213-494f-b4d2-990b6e1ec456
@@ -18,7 +19,7 @@ manager: ghogen
1819
ms.workload:
1920
- "multiple"
2021
---
21-
# Feature Tour of the Visual Studio Debugger
22+
# Quickstart: First look at the Visual Studio Debugger
2223

2324
This topic introduces the features of the Visual Studio debugger. If you want to follow along by opening your own app in Visual Studio, you can do that, or you can follow along with a sample app using the [Beginner's Guide](../debugger/getting-started-with-the-debugger.md).
2425

docs/debugger/debugger-overview.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: "Debugger overview - Visual Studio | Microsoft Docs"
3+
ms.custom: "mvc"
4+
ms.date: "07/11/2017"
5+
ms.reviewer: ""
6+
ms.suite: ""
7+
ms.technology:
8+
- "vs-ide-debug"
9+
ms.tgt_pltfrm: ""
10+
ms.topic: "overview"
11+
dev_langs:
12+
- "C++"
13+
- "FSharp"
14+
- "CSharp"
15+
- "VB"
16+
author: "mikejo5000"
17+
ms.author: "mikejo"
18+
manager: ghogen
19+
ms.workload:
20+
- "multiple"
21+
---
22+
# Overview of the Visual Studio debugger
23+
24+
The Visual Studio debugger allows you to observe the run-time behavior of your program and locate logic errors. The debugger works with all Visual Studio programming languages and their associated libraries. With the debugger, you can break execution to step through your code and evaluate variables in your application.
25+
26+
| | |
27+
|---------|---------|
28+
| ![movie camera icon for video](../install/media/video-icon.png "Watch a video") | [Watch a video](https://mva.microsoft.com/en-US/training-courses-embed/getting-started-with-visual-studio-2017-17798/Debugger-Feature-tour-of-Visual-studio-2017-sqwiwLD6D_1111787171) on debugging that shows similar steps. |
29+
30+
The debugger allows you to set breakpoints, inspect variables and set watches, view the call stack, debug on remote devices, debug multithreaded apps, and leverage many other features.
31+
32+
![Set a Breakpoint](../debugger/media/dbg-tour-set-a-breakpoint.gif "Set a breakpoint")
33+
34+
## Next steps
35+
36+
* [First look at the Debugger](../debugger/debugger-feature-tour.md)
37+
38+
Take a feature tour of the Visual Studio debugger.
39+
40+
* [Learn to debug using Visual Studio](../debugger/getting-started-with-the-debugger.md)
41+
42+
Explains how to use debugger features to debug your applications.
43+
44+
* [Debugger Tips and Tricks](../debugger/debugger-tips-and-tricks.md)
45+
46+
Learn how to increase your productivity with the debugger.

docs/debugger/first-look-at-the-debugger.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

docs/debugger/get-started-debugging-multithreaded-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.suite: ""
77
ms.technology:
88
- "vs-ide-debug"
99
ms.tgt_pltfrm: ""
10-
ms.topic: "article"
10+
ms.topic: "conceptual"
1111
dev_langs:
1212
- "CSharp"
1313
- "VB"

docs/debugger/getting-started-with-the-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.suite: ""
88
ms.technology:
99
- "vs-ide-debug"
1010
ms.tgt_pltfrm: ""
11-
ms.topic: "get-started-article"
11+
ms.topic: "tutorial"
1212
helpviewer_keywords:
1313
- "debugger"
1414
ms.assetid: 62734c0d-a75a-4576-8f73-0e97c19280e1

docs/debugger/how-to-use-intellitrace-step-back.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ In this tutorial, you will:
3434

3535
1. Open your project in Visual Studio Enterprise.
3636

37-
1. Go to **Tools > Options > IntelliTrace** settings, and select the option **IntelliTrace events and snapshots**.
37+
1. Open **Tools** > **Options** > **IntelliTrace** settings, and select the option **IntelliTrace events and snapshots**.
3838

3939
![Enable IntelliTrace Events and Snapshots mode](../debugger/media/intellitrace-enable-snapshots.png "Enable IntelliTrace Events and Snapshots mode")
4040

41-
1. Set one or more breakpoints in your project and start debugging (press **F5**), or start debugging by stepping through your code (**F10** or **F11**).
41+
1. In your project, set one or more breakpoints and start debugging (press **F5**), or start debugging by stepping through your code (**F10** or **F11**).
4242

4343
IntelliTrace takes a snapshot of the application's process on each debugger step and breakpoint event. These events are recorded in the **Events** tab in the **Diagnostic Tools** window, along with other IntelliTrace events. To open this window, choose **Debug** > **Windows** > **Show Diagnostic Tools**.
4444

docs/debugger/map-methods-on-the-call-stack-while-debugging-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.suite: ""
77
ms.technology:
88
- "vs-ide-debug"
99
ms.tgt_pltfrm: ""
10-
ms.topic: "get-started-article"
10+
ms.topic: "conceptual"
1111
f1_keywords:
1212
- "vs.progression.debugwithcodemaps"
1313
dev_langs:

docs/debugger/quickstart-debug-aspnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Debug ASP.NET - Visual Studio | Microsoft Docs"
3-
ms.custom: ""
3+
ms.custom: "mvc"
44
ms.date: "03/16/2018"
55
ms.reviewer: ""
66
ms.suite: ""

docs/debugger/quickstart-debug-with-cplusplus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Debug with C++ using the Visual Studio debugger | Microsoft Docs"
3-
ms.custom: ""
3+
ms.custom: "mvc"
44
ms.date: "03/18/2018"
55
ms.reviewer: ""
66
ms.suite: ""

docs/debugger/quickstart-debug-with-managed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Debug with managed code using the Visual Studio debugger | Microsoft Docs"
3-
ms.custom: ""
3+
ms.custom: "mvc"
44
ms.date: "03/18/2018"
55
ms.reviewer: ""
66
ms.suite: ""

docs/debugger/remote-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.suite: ""
77
ms.technology:
88
- "vs-ide-debug"
99
ms.tgt_pltfrm: ""
10-
ms.topic: "hero-article"
10+
ms.topic: "conceptual"
1111
f1_keywords:
1212
- "vs.debug.remote.overview"
1313
dev_langs:

docs/deployment/TOC.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# [Deployment documentation](index.md)
22
# Overview
3-
## [Deployment overview](deploying-applications-services-and-components.md)
3+
## [Overview of deployment](deploying-applications-services-and-components-resources.md)
44
# Quickstarts
5+
## [First look at deployment](deploying-applications-services-and-components.md)
56
## [Deploy to a local folder](quickstart-deploy-to-local-folder.md)
67
## [Deploy to a web site](quickstart-deploy-to-a-web-site.md)
78
## [Deploy to Azure](quickstart-deploy-to-azure.md)
@@ -131,6 +132,4 @@
131132
#### [<Signature> Element (ClickOnce Deployment)](signature-element-clickonce-deployment.md)
132133
#### [<customErrorReporting> Element (ClickOnce Deployment)](customerrorreporting-element-clickonce-deployment.md)
133134
### [ClickOnce Unmanaged API Reference](clickonce-unmanaged-api-reference.md)
134-
# Resources
135-
## [Deploying Applications, Services, and Components](deploying-applications-services-and-components-resources.md)
136135

0 commit comments

Comments
 (0)