Skip to content

Commit 3feb7ba

Browse files
committed
edits
1 parent 9d6088e commit 3feb7ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To help you decide between using the profiling tools in release or debug builds,
2020

2121
- Release builds provide optimizations like inlining function calls and constants, pruning unused code paths, and storing variables in ways that can't be used by the debugger. Performance numbers in debug builds are less accurate, because debug builds lack these optimizations.
2222
- In addition to differences between release builds and debug builds, the debugger itself changes performance times, as it does necessary debugger operations like intercepting exception and module load events.
23-
- For performance problems caused by CPU-intensive calls, there might be considerable performance differences between release and debug builds. Check to see whether the CPU issue exists in release builds.
23+
- For performance problems caused by CPU-intensive calls, there might be considerable performance differences between release and debug builds. Check to see whether the CPU performance issue exists in release builds.
2424
- External performance problems, like file I/O or network responsiveness issues, won't look much different in a release build or a debug build.
2525
- If the problem occurs only with debug builds, you probably don't need to run the tools with release builds.
2626
- Some tools, such as the .NET Object Allocation tool, are only available in the Performance Profiler (non-debugger scenarios).

docs/test/debug-unit-tests-with-test-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To diagnose why a test method is taking more time than you'd like, or using more
4242
1. Right-click the method in Test Explorer, and then select **Profile**.
4343
1. In the Performance Profiler, select a profiling tool to test your code.
4444

45-
For more information, see [this blog post](https://devblogs.microsoft.com/visualstudio/a-unit-of-profiling-makes-the-allocations-go-away/) or see [Collect profiling data without debugging](../profiling/running-profiling-tools-with-or-without-the-debugger.md#collect-profiling-data-without-debugging).
45+
For more information, see [this blog post](https://devblogs.microsoft.com/visualstudio/a-unit-of-profiling-makes-the-allocations-go-away/) or see [Collect profiling data on release builds](../profiling/running-profiling-tools-with-or-without-the-debugger.md#collect-profiling-data-on-release-builds).
4646
::: moniker-end
4747

4848
::: moniker range="vs-2019"

0 commit comments

Comments
 (0)