This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/src/dotnet/commands/dotnet-restore/Program.cs

22 lines
585 B
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.Linq;
using Microsoft.DotNet.Cli.CommandLine;
2016-01-04 12:36:46 -08:00
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.InternalAbstractions;
2016-01-04 12:36:46 -08:00
namespace Microsoft.DotNet.Tools.Restore
{
public partial class RestoreCommand
2016-01-04 12:36:46 -08:00
{
public static int Run(string[] args)
2016-01-04 12:36:46 -08:00
{
DebugHelper.HandleDebugSwitch(ref args);
2016-08-09 13:22:22 -07:00
return NuGet3.Restore(args);
2016-01-04 12:36:46 -08:00
}
}
2016-01-12 16:36:31 -08:00
}