Implement dotnet list projects (#5027)

* Implement dotnet list projects

* Address PR comments

* Fix build breaks
This commit is contained in:
Justin Goshi 2016-12-16 06:41:47 -10:00 committed by GitHub
commit 806d5a2589
22 changed files with 480 additions and 56 deletions

View file

@ -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,
};