dotnet-installer/src/dotnet/commands/dotnet-restore-projectjson/Program.cs
Piotr Puszkiewicz 6fcbefa4f7 [WIP] Removes *3 verbs, making msbuild the driver (#4456)
Removes *3 verbs, making msbuild the driver
2016-10-27 18:46:43 -07:00

21 lines
607 B
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.Linq;
using Microsoft.DotNet.Cli.CommandLine;
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.InternalAbstractions;
namespace Microsoft.DotNet.Tools.RestoreProjectJson
{
public partial class RestoreProjectJsonCommand
{
public static int Run(string[] args)
{
DebugHelper.HandleDebugSwitch(ref args);
return NuGet3.Restore(args);
}
}
}