Answers for "how to open a project in visual studio from terminal comand"

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
0

open project in visual studio using command prompt

start NameOfSolutionFile.sln
Posted by: Guest on September-29-2021

Code answers related to "how to open a project in visual studio from terminal comand"

C# Answers by Framework

Browse Popular Code Answers by Language