dotnet-installer/src/dotnet/commands/dotnet-add/Program.cs
2016-12-16 01:04:09 -08:00

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.Add.ProjectToProjectReference;
using Microsoft.DotNet.Tools.Add.ProjectToSolution;
namespace Microsoft.DotNet.Tools.Add
{
public class AddCommand : DotNetTopLevelCommandBase
{
protected override string CommandName => "add";
protected override string FullCommandNameLocalized => LocalizableStrings.NetAddCommand;
internal override List<Func<DotNetSubCommandBase>> SubCommands =>
new List<Func<DotNetSubCommandBase>>
{
AddProjectToSolutionCommand.Create,
AddProjectToProjectReferenceCommand.Create,
};
public static int Run(string[] args)
{
var command = new AddCommand();
return command.RunCommand(args);
}
}
}