29 lines
1 KiB
C#
29 lines
1 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.DotNet.Cli;
|
|
using Microsoft.DotNet.Tools.List.ProjectToProjectReferences;
|
|
using Microsoft.DotNet.Tools.List.ProjectsInSolution;
|
|
|
|
namespace Microsoft.DotNet.Tools.List
|
|
{
|
|
public class ListCommand : DotNetTopLevelCommandBase
|
|
{
|
|
protected override string CommandName => "list";
|
|
protected override string FullCommandNameLocalized => LocalizableStrings.NetListCommand;
|
|
internal override List<Func<DotNetSubCommandBase>> SubCommands =>
|
|
new List<Func<DotNetSubCommandBase>>
|
|
{
|
|
ListProjectsInSolutionCommand.Create,
|
|
ListProjectToProjectReferencesCommand.Create,
|
|
};
|
|
|
|
public static int Run(string[] args)
|
|
{
|
|
var command = new ListCommand();
|
|
return command.RunCommand(args);
|
|
}
|
|
}
|
|
}
|