dotnet-installer/src/dotnet/commands/dotnet-restore/Program.cs

69 lines
1.9 KiB
C#
Raw Normal View History

2016-01-04 12:36:46 -08:00
// 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;
2017-03-08 16:02:24 -08:00
using System.Linq;
using Microsoft.DotNet.Cli.CommandLine;
2016-01-04 12:36:46 -08:00
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.Tools.MSBuild;
using Microsoft.DotNet.Cli;
2017-03-06 20:53:26 -08:00
using Parser = Microsoft.DotNet.Cli.Parser;
2016-01-04 12:36:46 -08:00
namespace Microsoft.DotNet.Tools.Restore
{
2017-02-23 11:31:48 -08:00
public class RestoreCommand : MSBuildForwardingApp
2016-01-04 12:36:46 -08:00
{
public RestoreCommand(IEnumerable<string> msbuildArgs, string msbuildPath = null)
2017-02-23 11:31:48 -08:00
: base(msbuildArgs, msbuildPath)
{
}
public static RestoreCommand FromArgs(string[] args, string msbuildPath = null)
2016-01-04 12:36:46 -08:00
{
DebugHelper.HandleDebugSwitch(ref args);
Reporter.Output.WriteLine(string.Join(" ", args));
2017-03-08 16:02:24 -08:00
var parser = Parser.Instance;
2017-03-08 16:02:24 -08:00
var result = parser.ParseFrom("dotnet restore", args);
result.ShowHelpIfRequested();
Reporter.Output.WriteLine(result.Diagram());
var restore = result["dotnet"]["restore"];
2017-03-06 20:53:26 -08:00
var msbuildArgs = new List<string>
{
2017-03-06 20:53:26 -08:00
"/NoLogo",
"/t:Restore",
"/ConsoleLoggerParameters:Verbosity=Minimal"
};
msbuildArgs.AddRange(restore.OptionValuesToBeForwarded());
msbuildArgs.AddRange(restore.Arguments);
return new RestoreCommand(msbuildArgs, msbuildPath);
}
public static int Run(string[] args)
{
DebugHelper.HandleDebugSwitch(ref args);
RestoreCommand cmd;
try
{
cmd = FromArgs(args);
}
catch (CommandCreationException e)
{
return e.ExitCode;
}
return cmd.Execute();
}
2016-01-04 12:36:46 -08:00
}
2017-03-06 20:53:26 -08:00
}