Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions docs/debugger/find-your-debugging-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sections:

- **How do I log information to the Output window under configurable conditions without modifying or stopping my code?**

Tracepoints allow you to log information to the Output window under configurable conditions without modifying or stopping your code. For more information, see [Use tracepoints in the Visual Studio debugger](../debugger/using-tracepoints.md)
Tracepoints allow you to log information to the Output window under configurable conditions without modifying or stopping your code. For more information, see [Use tracepoints in the Visual Studio debugger](../debugger/using-tracepoints.md).

- **Manage and keep track of my breakpoints**

Expand Down Expand Up @@ -103,14 +103,14 @@ sections:
- **How can I to attach to the same application repeatedly?**

You can use **Reattach to Process** (**Shift+Alt+P**) to easily allow you to start debugging your application in one click without needing to go through the Attach to Process dialog every time.
See [Reattach to a process](attach-to-running-processes-with-the-visual-studio-debugger.md#BKMK_reattach)
See [Reattach to a process](attach-to-running-processes-with-the-visual-studio-debugger.md#BKMK_reattach).

- question: |
Debug multithreaded applications
answer: |
- **How can I debug a multi-threaded application? Or, is my application in a hung state?**

See [Parallel Stacks window](using-the-parallel-stacks-window.md) further troubleshooting
See [Parallel Stacks window](using-the-parallel-stacks-window.md) further troubleshooting.

- **How can I view the order in which functions are called?**

Expand Down Expand Up @@ -145,7 +145,7 @@ sections:

Just My Code is a Visual Studio debugging feature that automatically steps over calls to system, framework, and other non-user code.
In the Call Stack window, Just My Code collapses these calls into [External Code] frames.
See [Debug only user code with Just My Code](just-my-code.md)
See [Debug only user code with Just My Code](just-my-code.md).

- **How can I view or debug the raw assembly instructions that my program is executing?**

Expand All @@ -154,17 +154,17 @@ sections:
- **Can I see source code for .NET Libraries?**

Enable Microsoft Symbol Servers from Debug > Options > Symbols in order to download symbols and source for .NET Libraries.
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md)
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md).

- **How can I load PDBs from a specific or shared location or server?**

Configure your Symbol Servers from Debug > Options > Symbols.
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md)
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md).

- **How can I never load a specific PDB? Or, how can I always load one?**

Configure your Include and Exclude Lists in Debug > Options > Symbols.
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md)
See [Specify symbol](specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md).

- question: |
Configure debugging
Expand All @@ -184,12 +184,12 @@ sections:
- **Do I need to save a dump?**

While stopped at an error or breakpoint during debugging, select **Debug > Save Dump As**.
See [Dump files](using-dump-files.md)
See [Dump files](using-dump-files.md).

- **How do I analyze a dump file?**

Open the dump by choosing **File > Open** in Visual Studio. To start debugging, select **Debug with Managed Only**, **Debug with Native Only**, **Debug with Mixed**, or **Debug with Managed Memory**.
See [Dump files](using-dump-files.md)
See [Dump files](using-dump-files.md).

- **Can I edit code during a debugging session?**

Expand All @@ -201,7 +201,7 @@ sections:

- **How can I fix performance issues?**

See [First look at the profiling tools](../profiling/profiling-feature-tour.md)
See [First look at the profiling tools](../profiling/profiling-feature-tour.md).

- **How do I fix an exception?**

Expand Down