Home > Back-end >  How to list all projects added to a solution in Linux terminal?
How to list all projects added to a solution in Linux terminal?

Time:09-14

In Ubuntu terminal I can add a project to a solution with the following:

dotnet sln add ./projectName/projectName.csproj

What command can I run in the terminal, to see all the projects that have been added?

CodePudding user response:

Use dotnet sln list. If multiple solutions are present in folder - add solution name:

dotnet sln SolutionName.sln list
  • Related