PMCCommand icon indicating copy to clipboard operation
PMCCommand copied to clipboard

Command allows at most one argument

Open nunoperalta opened this issue 3 years ago • 0 comments

This:

DTE.ExecuteCommand("File.OpenProject", ProjectPath);

Needs to update to:

DTE.ExecuteCommand("File.OpenProject", "\"" + ProjectPath + "\"");

To support spaces in the path.

Otherwise you get an error saying "Command allows at most one argument".

nunoperalta avatar Jan 20 '22 14:01 nunoperalta