Generate properties to pass to the next stage of the build
This commit is contained in:
parent
884a48372d
commit
12f8c2377f
8 changed files with 62 additions and 9 deletions
|
@ -13,11 +13,13 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
|
||||
public string Verbosity { get; set; }
|
||||
|
||||
public string AdditionalParameters { get; set; }
|
||||
|
||||
protected override string Args
|
||||
{
|
||||
get
|
||||
{
|
||||
return $"{GetVerbosityArg()} {GetMaxCpuCountArg()}";
|
||||
return $"{GetVerbosityArg()} {GetMaxCpuCountArg()} {GetAdditionalParameters()}";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -40,5 +42,10 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
|
||||
return null;
|
||||
}
|
||||
|
||||
private string GetAdditionalParameters()
|
||||
{
|
||||
return AdditionalParameters;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue