Announcement

Collapse
No announcement yet.

How to create a solution file and add a project in vscode using terminal?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to create a solution file and add a project in vscode using terminal?

    We can use the below commands to create a solution file and a add a sqlproject file to it

    Code:
    dotnet new sln -n MyDBSolution
    Code:
    dotnet sln MyDBSolution.sln add MyDatabase.sqlproj
Working...
X