I\'d like to have a tool window in Visual Studio that allows me to type command line things (e.g. git stash, npm install, etc.) in the current proj
git stash
npm install
There is a command window in Visual Studio (CTRL + ALT + A) or (View -> OtherWindows -> Command Window)
You can then use the shell command to run external executables
The syntax is:
shell [/command] [/output] [/dir:folder] path [args]