Skip to content

Commit 2a4d874

Browse files
authored
Merge pull request #5877 from Mikejo5000/mikejo-br17
GitHub issue fixes
2 parents 2485f59 + 4bf6f7d commit 2a4d874

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

docs/debugger/how-to-install-a-visualizer.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ After you have created a visualizer, you must install the visualizer so that it
2424
> [!NOTE]
2525
> In UWP apps, only the standard text, HTML, XML, and JSON visualizers are supported. Custom (user-created) visualizers are not supported.
2626
27+
::: moniker range=">=vs-2019"
2728
### To install a visualizer for Visual Studio 2019
2829

29-
1. Locate the DLL that contains the visualizer you have built.
30+
1. Locate the DLL that contains the visualizer you built.
3031

31-
2. Copy the [Debugger Side](create-custom-visualizers-of-data.md#to-create-the-debugger-side) DLL to either of the following locations:
32+
2. Copy the [Debugger Side](create-custom-visualizers-of-data.md#to-create-the-debugger-side) DLL (and any DLLs it depends on) to either of the following locations:
3233

3334
- *VisualStudioInstallPath* `\Common7\Packages\Debugger\Visualizers`
3435

@@ -40,17 +41,22 @@ After you have created a visualizer, you must install the visualizer so that it
4041

4142
- `My Documents\` *VisualStudioVersion* `\Visualizers\` *Framework*
4243

43-
Where *Framework* is either:
44+
where *Framework* is either:
4445
- `net2.0` for debuggees running the `.NET Framework` runtime.
4546
- `netstandard2.0` for debuggees using a runtime that supports `netstandard 2.0` (`.NET Framework v4.6.1+` or `.NET Core 2.0+`).
4647
- `netcoreapp` for debuggees running the `.NET Core` runtime. (supports `.NET Core 2.0+`)
4748

4849
4. Restart the debugging session.
4950

51+
> [!NOTE]
52+
> The procedure is different in Visual Studio 2017 and older. See the [previous version](how-to-install-a-visualizer.md?view=vs-2017) of this article.
53+
::: moniker-end
54+
55+
::: moniker range="vs-2017"
5056
### To install a visualizer for Visual Studio 2017 and older
5157

5258
> [!IMPORTANT]
53-
> Only .NET Framework visualizers are supported in Visual Studio 2017 and older
59+
> Only .NET Framework visualizers are supported in Visual Studio 2017 and older.
5460
5561
1. Locate the DLL that contains the visualizer you have built.
5662

@@ -64,6 +70,7 @@ After you have created a visualizer, you must install the visualizer so that it
6470

6571
> [!NOTE]
6672
> If you want to use a managed visualizer for remote debugging, copy the DLL to the same path on the remote computer.
73+
::: moniker-end
6774

6875
## See also
6976
- [Create Custom Visualizers](../debugger/create-custom-visualizers-of-data.md)

0 commit comments

Comments
 (0)