PMCCommand
PMCCommand copied to clipboard
Command allows at most one argument
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".