Skip to content

Troubleshooting visualizer installation

Zev Spitz edited this page Dec 5, 2019 · 8 revisions
  1. In order for the visualizer to work, the files need to be unblocked. This is usually available through the Explorer UI, by right-clicking on the file and selecting Properties:

    Right-click on file

    and checking the Unblock checkbox.

    Unblock

  2. Under VS 2019, you can use the visualizer with projects that target frameworks other than .NET Framework, by placing an additional copy of the DLLs in a subfolder of the main visualizer folder:

    • VisualStudioInstallPath \Common7\Packages\Debugger\Visualizers\ framework
    • My Documents\ VisualStudioVersion \Visualizers\ framework

    where framework is one of the following:

    • for a project targting a .NET Standard compatible framework, use netstandard2.0
    • for a .NET Core project, use netcoreapp
    • for a .NET Framework project, use net2.0

    (Reference)

Clone this wiki locally