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
- dotnet sln list
- dotnet list reference (for projects)