Using the command line from within Visual Studio

后端 未结 4 1300
囚心锁ツ
囚心锁ツ 2020-12-18 20:03

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

4条回答
  •  执念已碎
    2020-12-18 20:47

    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]
    

提交回复
热议问题