Mange Nugets - Show Installed does not open custom nuget path

when using custom path for nugets ( –nuget-path “…”) the command does not open the specified folder.

same as reported here: "Show Installed" not linking to the right NuGet folder when overriding NuGets

unfortunately i cannot reproduce the issue here. can you be more specific?

  • which vvvversion?
  • which exact commandline are you using?

Basically starting a “standalone” project from a bat file:

@echo off

SET dir=%~dp0
SET patch=main.vl

start “” “%dir%\Gamma\vvvv_gamma_7.0-win-x64\vvvv.exe” --nuget-path “%dir%\Gamma\Nugets” --open “%dir%\%patch%” -m

what if you remove the “\” after “%dir%” ie. use only:

--nuget-path "%dir%Gamma\Nugets"

Well that worked, my bad. A trailing ”\” is added when creating the dir variable. I was sure the “\” inbetween is correct because nuget installations commands from the menu (if nuget was missing) worked fine and were written to the custom folder. Apparently there is some clever filter when there is “\\”, like in that case. There is no such filter with the “show installed” command. nevermind