I have created a Debug Visualizer plugin to show an Exception graph. My code is here: ExceptionVisualizerGraph
My visualization plugin contains several DLLs that need to be deployed to the C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Packages\Debugger\Visualizers
folder so that the Visual Studio Debugger can pick them up and use them.
I have created an installer project src/Installer to create a VSIX installer for my plugin.
However, I don’t know how to tell the VSIX installer to deploy my DLLs to the abovementioned folder.
Could you please help me figure out how to configure VSIX to deploy my plugin and its dependent DLLs to the right folder?