fd9cb55f1a
* Add msbuild-based stage0 where possible * Fix bash initialization script * Windows Fixes * Fix dotnet deb tool
56 lines
1.3 KiB
C#
56 lines
1.3 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.
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class DotNetRestore : DotNetTool
|
|
{
|
|
protected override string Command
|
|
{
|
|
get { return "restore"; }
|
|
}
|
|
|
|
protected override string Args
|
|
{
|
|
get { return $"{Root} {GetSource()} {GetPackages()} {GetSkipInvalidConfigurations()}"; }
|
|
}
|
|
|
|
public string Root { get; set; }
|
|
|
|
public string Source { get; set; }
|
|
|
|
public string Packages { get; set; }
|
|
|
|
public bool SkipInvalidConfigurations { get; set; }
|
|
|
|
private string GetSource()
|
|
{
|
|
if (!string.IsNullOrEmpty(Source))
|
|
{
|
|
return $"--source {Source}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetPackages()
|
|
{
|
|
if (!string.IsNullOrEmpty(Packages))
|
|
{
|
|
return $"--packages {Packages}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetSkipInvalidConfigurations()
|
|
{
|
|
if (SkipInvalidConfigurations)
|
|
{
|
|
return "/p:SkipInvalidConfigurations=true";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|