merge RC3 into rel/1.0.0
This commit is contained in:
commit
9008aaff85
120 changed files with 603 additions and 580 deletions
|
@ -12,9 +12,11 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
|
||||
protected override string Args
|
||||
{
|
||||
get { return $"{GetProjectPath()} {GetSource()} {GetPackages()} {GetSkipInvalidConfigurations()} {GetRuntime()} {GetAdditionalParameters()}"; }
|
||||
get { return $"{GetProjectPath()} {GetConfigFile()} {GetSource()} {GetPackages()} {GetSkipInvalidConfigurations()} {GetRuntime()} {GetAdditionalParameters()}"; }
|
||||
}
|
||||
|
||||
public string ConfigFile { get; set; }
|
||||
|
||||
public string AdditionalParameters { get; set; }
|
||||
|
||||
public string ProjectPath { get; set; }
|
||||
|
@ -27,6 +29,16 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
|
||||
public string Runtime { get; set; }
|
||||
|
||||
private string GetConfigFile()
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ConfigFile))
|
||||
{
|
||||
return $"--configfile {ConfigFile}";
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private string GetSource()
|
||||
{
|
||||
if (!string.IsNullOrEmpty(Source))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue