ba69c88c79
* Remove GenerateRuntimeConfigurationFiles from this library * Disable parallel build of test.sln * PR feedback
92 lines
2.2 KiB
C#
92 lines
2.2 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 DotNetPack : DotNetMSBuildTool
|
|
{
|
|
protected override string Command
|
|
{
|
|
get { return "pack"; }
|
|
}
|
|
|
|
protected override string Args
|
|
{
|
|
get { return $"{base.Args} {GetProjectPath()} {GetConfiguration()} {GetNoBuild()} {GetOutput()} {GetVersionSuffix()} {GetRuntime()} {MsbuildArgs}"; }
|
|
}
|
|
|
|
public string Configuration { get; set; }
|
|
|
|
public bool NoBuild { get; set; }
|
|
|
|
public string MsbuildArgs { get; set; }
|
|
|
|
public string Output { get; set; }
|
|
|
|
public string ProjectPath { get; set; }
|
|
|
|
public string VersionSuffix { get; set; }
|
|
|
|
public string Runtime { get; set; }
|
|
|
|
private string GetConfiguration()
|
|
{
|
|
if (!string.IsNullOrEmpty(Configuration))
|
|
{
|
|
return $"--configuration {Configuration}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetNoBuild()
|
|
{
|
|
if (NoBuild)
|
|
{
|
|
return $"--no-build";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetOutput()
|
|
{
|
|
if (!string.IsNullOrEmpty(Output))
|
|
{
|
|
return $"--output {Output}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetProjectPath()
|
|
{
|
|
if (!string.IsNullOrEmpty(ProjectPath))
|
|
{
|
|
return $"{ProjectPath}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetVersionSuffix()
|
|
{
|
|
if (!string.IsNullOrEmpty(VersionSuffix))
|
|
{
|
|
return $"--version-suffix {VersionSuffix}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetRuntime()
|
|
{
|
|
if (!string.IsNullOrEmpty(Runtime))
|
|
{
|
|
return $"/p:RuntimeIdentifier={Runtime}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|