Issue
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?
Solution
Use dotnet sln list
. If multiple solutions are present in folder - add solution name:
dotnet sln SolutionName.sln list
- dotnet sln list
- dotnet list reference (for projects)
Answered By - Guru Stron Answer Checked By - Robin (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.