Skip to content

Commit 1f33769

Browse files
authored
Merge pull request #8516 from MicrosoftDocs/main638000898142464345sync_temp
Repo sync for protected CLA branch
2 parents fe4b46e + 0f2cdf1 commit 1f33769

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

docs/ide/reference/options-text-editor-fsharp-intellisense.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.date: 01/16/2019
66
ms.topic: reference
77
f1_keywords:
88
- "VS.ToolsOptionsPages.Text_Editor.FSharp.IntelliSense"
9-
author: jillre
10-
ms.author: jillfra
9+
author: TerryGLee
10+
ms.author: tglee
1111
manager: jmartens
1212
ms.technology: vs-ide-general
1313
ms.workload:
@@ -36,4 +36,4 @@ Use the **IntelliSense** options page to modify some text editor settings for F#
3636
## See also
3737

3838
- [General, Environment, Options Dialog Box](../../ide/reference/general-environment-options-dialog-box.md)
39-
- [Using IntelliSense](../../ide/using-intellisense.md)
39+
- [Using IntelliSense](../../ide/using-intellisense.md)

docs/profiling/analyze-memory-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To find memory leaks and inefficient memory usage, you can use tools such as the
1919

2020
The Memory Usage tool lets you take one or more *snapshots* of the managed and native memory heap. You can collect snapshots of .NET, ASP.NET, C++, or mixed mode (.NET and native) apps. The **Memory Usage** tool can run on an open Visual Studio project, on an installed Microsoft Store app, or attached to a running app or process. You can run the **Memory Usage** tool with or without debugging. For more information, see [Run profiling tools with or without the debugger](../profiling/running-profiling-tools-with-or-without-the-debugger.md). In the debugger, you can turn memory profiling on and off, and see a per-object breakdown of memory usage. You can view memory usage results when execution is paused, for example at a breakpoint.
2121

22-
.NET developers may choose between either the .NET Object Allocation tool or the [Memory usage](../profiling/memory-usage.md) tool.
22+
.NET developers may choose between either the .NET Object Allocation tool or the Memory usage tool.
2323

2424
- The [.NET Object Allocation tool](../profiling/dotnet-alloc-tool.md) helps you identify allocation patterns and anomalies in your .NET code, and helps identify common issues with garbage collection. This tool runs only as a post-mortem tool. You can run this tool on local or remote machines.
2525
- The [Memory Usage tool](../profiling/memory-usage-without-debugging2.md) is helpful in identifying memory leaks, which are not typically common in .NET apps. If you need to use debugger features while checking memory, such as stepping through code, the [debugger-integrated Memory usage](../profiling/memory-usage.md) tool is recommended.

docs/profiling/index.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
author: mikejo5000
1212
ms.author: mikejo
1313
manager: jmartens
14-
ms.date: 06/03/2020
14+
ms.date: 09/29/2022
1515

1616
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1717

@@ -53,22 +53,22 @@ landingContent:
5353
links:
5454
- text: CPU Usage
5555
url: cpu-usage.md
56+
- text: Memory Usage
57+
url: memory-usage-without-debugging2.md
58+
- text: CPU Insights
59+
url: cpu-insights.md
60+
- text: File I/O
61+
url: use-file-io.md
5662
- text: Database
5763
url: analyze-database.md
5864
- text: Events Viewer
5965
url: events-viewer.md
60-
- text: Memory Usage
61-
url: memory-usage-without-debugging2.md
6266
- text: .NET Object Allocation Tracking
6367
url: dotnet-alloc-tool.md
6468
- text: .NET Async
6569
url: analyze-async.md
66-
- text: File I/O
67-
url: use-file-io.md
6870
- text: .NET Counters
6971
url: dotnet-counters-tool.md
70-
- text: GPU Usage (Direct3D)
71-
url: gpu-usage.md
7272
- text: Analyze resource consumption (XAML)
7373
url: application-timeline.md
7474

docs/profiling/memory-usage-without-debugging2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.workload:
2222

2323
The **Memory Usage** tool monitors your app's memory use. You can use the tool to study the real-time memory effects of scenarios you're actively developing in Visual Studio. You can take detailed snapshots of the app's memory states, and compare snapshots to find the root causes of memory issues. The Memory Usage tool is supported on .NET, ASP.NET, C++, or mixed mode (.NET and native) apps.
2424

25-
The Memory Usage tool can run [with or without the debugger](../profiling/running-profiling-tools-with-or-without-the-debugger.md). In this article, we show how to use the Memory Usage tool without the debugger in the Visual Studio **Performance Profiler**, which is recommended for release builds. For information on choosing the best memory analysis tool for your needs, see [Choose a memory analysis tool](../profiling/memory-usage.md).
25+
The Memory Usage tool can run [with or without the debugger](../profiling/running-profiling-tools-with-or-without-the-debugger.md). In this article, we show how to use the Memory Usage tool without the debugger in the Visual Studio **Performance Profiler**, which is recommended for release builds. For information on choosing the best memory analysis tool for your needs, see [Choose a memory analysis tool](../profiling/analyze-memory-usage.md).
2626

2727
## Memory Usage diagnostic sessions
2828

docs/profiling/memory-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.workload:
1515

1616
[!INCLUDE [Visual Studio](~/includes/applies-to-version/vs-windows-only.md)]
1717

18-
Find memory leaks and inefficient memory while you're debugging with the debugger-integrated **Memory Usage** diagnostic tool. The Memory Usage tool lets you take one or more *snapshots* of the managed and native memory heap to help understand the memory usage impact of object types. You can also analyze memory usage without a debugger attached or by targeting a running app. For more information, see [Run profiling tools with or without the debugger](../profiling/running-profiling-tools-with-or-without-the-debugger.md). For information on choosing the best memory analysis tool for your needs, see [Choose a memory analysis tool](../profiling/memory-usage.md).
18+
Find memory leaks and inefficient memory while you're debugging with the debugger-integrated **Memory Usage** diagnostic tool. The Memory Usage tool lets you take one or more *snapshots* of the managed and native memory heap to help understand the memory usage impact of object types. You can also analyze memory usage without a debugger attached or by targeting a running app. For more information, see [Run profiling tools with or without the debugger](../profiling/running-profiling-tools-with-or-without-the-debugger.md). For information on choosing the best memory analysis tool for your needs, see [Choose a memory analysis tool](../profiling/analyze-memory-usage.md).
1919

2020
Although you can collect memory snapshots at any time in the **Memory Usage** tool, you can use the Visual Studio debugger to control how your application executes while investigating performance issues. Setting breakpoints, stepping, Break All, and other debugger actions can help you focus your performance investigations on the code paths that are most relevant. Performing those actions while your app is running can eliminate the noise from the code that doesn't interest you and can significantly reduce the amount of time it takes you to diagnose an issue.
2121

0 commit comments

Comments
 (0)