Skip to content

Commit 33f349a

Browse files
authored
Update article on using dump files (#12740)
* Update article on using dump files * edits * link fix * link fix
1 parent 1fe90dc commit 33f349a

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed
Loading

docs/debugger/navigating-through-code-with-the-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Navigate code with the debugger"
33
description: "Learn how to use the Visual Studio debugger to troubleshoot your code. Topics include entering break mode, stepping through code, and running to a target."
4-
ms.date: 06/16/2023
4+
ms.date: 06/27/2024
55
ms.topic: how-to
66
f1_keywords:
77
- vs.debug.execution

docs/debugger/using-dump-files.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Use dump files in the debugger"
33
description: A dump file is a snapshot of an executing app and loaded modules. Consider creating a dump file for situations where you don't have debug access to the app.
4-
ms.date: "06/26/2023"
4+
ms.date: "06/27/2024"
55
ms.topic: "conceptual"
66
f1_keywords:
77
- "vs.debug.crashdump"
@@ -74,11 +74,18 @@ With [Just-In-Time Debugging](../debugger/just-in-time-debugging-in-visual-studi
7474

7575
The **Minidump File Summary** window shows summary and module information for the dump file, and actions you can take.
7676

77+
::: moniker range=">=vs-2022"
78+
:::image type="content" source="../debugger/media/vs-2022/dbg-dump-summary-page.png" alt-text="Screenshot showing Minidump summary page.":::
79+
::: moniker-end
80+
::: moniker range="vs-2019"
7781
:::image type="content" source="../debugger/media/dbg_dump_summarypage.png" alt-text="Screenshot showing Minidump summary page.":::
82+
::: moniker-end
7883

7984
1. Under **Actions**:
85+
8086
- To set symbol loading locations, select **Set symbol paths**.
81-
- To start debugging, select **Debug with Managed Only**, **Debug with Native Only**, **Debug with Mixed**, or **Debug with Managed Memory**.
87+
- To start debugging, select **Debug with Managed Only**, **Debug with Mixed**, **Debug with Native Only**, or **Debug Managed Memory**. To analyze managed memory, see [Managed type reports](../profiling/memory-usage-without-debugging2.md#managed-types-reports).
88+
- To get memory analysis on the dump, select **Run Diagnostic Analysis** and see [Debug a managed memory dump with .NET Diagnostic Analyzers](../debugger/how-to-debug-managed-memory-dump.md).
8289

8390
## <a name="BKMK_Find_binaries__symbol___pdb__files__and_source_files"></a> Find .exe, .pdb, and source files
8491

docs/javascript/debug-nodejs.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Debug a JavaScript or TypeScript app"
33
description: Debug JavaScript and TypeScript applications in Visual Studio, reach breakpoints in your code, attach the debugger, inspect variables, view the call stack, and more.
4-
ms.date: "06/05/2023"
4+
ms.date: "06/27/2024"
55
ms.topic: "how-to"
66
ms.devlang: javascript
77
author: "mikejo5000"
@@ -15,8 +15,14 @@ dev_langs:
1515

1616
You can debug JavaScript and TypeScript code using Visual Studio. You can hit breakpoints, attach the debugger, inspect variables, view the call stack, and use other debugging features.
1717

18+
::: moniker range=">=vs-2022"
19+
> [!TIP]
20+
> If you haven't already installed Visual Studio, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page to install it for free.
21+
::: moniker-end
22+
::: moniker range="vs-2019"
1823
> [!TIP]
1924
> If you haven't already installed Visual Studio, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page to install it for free. If you are developing Node.js applications, you need to install the **Node.js development workload** with Visual Studio.
25+
::: moniker-end
2026

2127
## Debug server-side script
2228

docs/javascript/javascript-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: JavaScript and TypeScript in Visual Studio
33
description: Learn how Visual Studio provides rich support for JavaScript development, both using JavaScript directly, and also using the TypeScript programming language.
44
titleSuffix: ""
5-
ms.date: "06/05/2023"
5+
ms.date: "06/27/2024"
66
ms.subservice: javascript-typescript
77
ms.topic: conceptual
88
dev_langs:

0 commit comments

Comments
 (0)