Implement dotnet list projects (#5027)
* Implement dotnet list projects * Address PR comments * Fix build breaks
This commit is contained in:
parent
441277ccfa
commit
806d5a2589
22 changed files with 480 additions and 56 deletions
|
@ -6,6 +6,7 @@ using System.Collections.Generic;
|
|||
using Microsoft.DotNet.Cli;
|
||||
using Microsoft.DotNet.Cli.CommandLine;
|
||||
using Microsoft.DotNet.Tools.List.ProjectToProjectReferences;
|
||||
using Microsoft.DotNet.Tools.List.ProjectsInSolution;
|
||||
|
||||
namespace Microsoft.DotNet.Tools.List
|
||||
{
|
||||
|
@ -16,6 +17,7 @@ namespace Microsoft.DotNet.Tools.List
|
|||
internal override List<Func<CommandLineApplication, CommandLineApplication>> SubCommands =>
|
||||
new List<Func<CommandLineApplication, CommandLineApplication>>
|
||||
{
|
||||
ListProjectsInSolutionCommand.CreateApplication,
|
||||
ListProjectToProjectReferencesCommand.CreateApplication,
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue