Answers for "command to open project in visual studio code"

C#
0

open project in vs code from terminal

// Navigate to your project directory in terminal 
// then enter the below command 

open -a 'Visual Studio Code' .

// the above will open the whole project folder 
// if you wan to only open a single file from the project use

open -a 'Visual Studio Code' fileName.html
Posted by: Guest on June-08-2021

Code answers related to "command to open project in visual studio code"

C# Answers by Framework

Browse Popular Code Answers by Language