dotnet sln list

dotnet sln list --help

eg@debian:~$ dotnet sln list --help
Description:
  List all projects in a solution file.

Usage:
  dotnet sln <SLN_FILE> list [options]

Arguments:
  <SLN_FILE>  The solution file to operate on. If not specified, the command will search the current directory for one. [default: /home/eg/]

Options:
  -?, -h, --help  Show command line help.

dotnet sln <solution_file_path> list

eg@debian:~$ dotnet sln ./Data/DotnetCliExamples/ExampleSolution/ExampleSolution.sln list
Project(s)
----------
ExampleSolution.Mvc1/ExampleSolution.Mvc1.csproj
ExampleSolution.WebApi1/ExampleSolution.WebApi1.csproj

Last updated