Skip to content

Commit c1f3341

Browse files
committed
tweaks
1 parent 3feb7ba commit c1f3341

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docs/profiling/running-profiling-tools-with-or-without-the-debugger.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.subservice: debug-diagnostics
1010
---
1111
# Run profiling tools on release or debug builds (C#, Visual Basic, C++, F#)
1212

13-
Visual Studio offers a choice of performance measurement and profiling tools. Some tools, like CPU Usage and Memory Usage, can run either on release builds or while debugging your app. Tools that appear in the [Diagnostics Tools window](../profiling/profiling-feature-tour.md#measure-performance-while-debugging) run only during a debugging session using a debug build. Tools that appear in the [Performance Profiler](../profiling/profiling-feature-tour.md#post_mortem) run without the debugger, typically on release builds, and you analyze the results after you choose to stop and collect data (for post-mortem analysis).
13+
Visual Studio offers a choice of performance measurement and profiling tools. Some tools, like CPU Usage and Memory Usage, can run either on release builds or while debugging your app (debug build). Tools that appear in the [Diagnostics Tools window](../profiling/profiling-feature-tour.md#measure-performance-while-debugging) run only during a debugging session. Tools that appear in the [Performance Profiler](../profiling/profiling-feature-tour.md#post_mortem) run without the debugger, typically on release builds, and you analyze the results after you choose to stop and collect data (for post-mortem analysis).
1414

1515
The Performance Profiler and the debugger-integrated Diagnostic Tools provide different information and experiences. While using the Diagnostic Tools, the debugger shows you variable values and lets you use breakpoints.
1616

@@ -66,14 +66,16 @@ You can save the reports, and open them from the **Recently Opened Sessions** li
6666
![Screenshot of Diagnostic Tools Recently Opened Sessions list.](../profiling/media/diaghubopenexistingdiagsession.png "PDHUB_OpenExistingDiagSession")
6767
::: moniker-end
6868

69-
For more information, see:
69+
For more information about the tools available for use in release builds, see:
7070

7171
- [Analyze performance by using CPU profiling](../profiling/cpu-usage.md)
7272
- [Analyze memory usage](../profiling/memory-usage-without-debugging2.md)
7373
- [Analyze memory usage for .NET code](../profiling/dotnet-alloc-tool.md)
7474
- [Analyze instrumentation data](../profiling/instrumentation.md)
75+
- [Analyze .NET Counters](../profiling/dotnet-counters-tool.md)
7576
- [Analyze performance of .NET asynchronous code](../profiling/analyze-async.md)
7677
- [Analyze database performance](../profiling/analyze-database.md)
78+
- [View events](../profiling/events-viewer.md)
7779
- [Analyze GPU usage](../profiling/gpu-usage.md)
7880

7981
## <a name="BKMK_Quick_start__Collect_diagnostic_data"></a> Collect profiling data while debugging
@@ -100,12 +102,13 @@ The diagnostic session ends when you stop debugging.
100102
>[!NOTE]
101103
>Use relaunch to skip the launch page and automatically run with your previous settings with **Alt+F2** or by clicking **Debug > Performance Profiler**.
102104
103-
For more information, see:
105+
For more information about the tools available while debugging, see:
104106

105107
- [Measure application performance by analyzing CPU usage](../profiling/beginners-guide-to-performance-profiling.md)
106108
- [Measure memory usage in Visual Studio](../profiling/memory-usage.md)
109+
- [Analyze .NET Counters](../profiling/dotnet-counters-tool.md)
107110

108-
### The Events tab
111+
### Events tab
109112

110113
During a debugging session, the Events tab of the Diagnostic Tools window lists the diagnostic events that occur. The category prefixes *Breakpoint*, *File*, and others, let you quickly scan the list for a category, or skip the categories you don't care about.
111114

0 commit comments

Comments
 (0)