44 lines
1.1 KiB
C#
44 lines
1.1 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.
|
|
using Microsoft.Build.Framework;
|
|
using Microsoft.Build.Utilities;
|
|
|
|
using Microsoft.DotNet.Cli.Build.Framework;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public abstract class DotNetMSBuildTool : DotNetTool
|
|
{
|
|
public int MaxCpuCount { get; set; } = 0;
|
|
|
|
public string Verbosity { get; set; }
|
|
|
|
protected override string Args
|
|
{
|
|
get
|
|
{
|
|
return $"{GetVerbosityArg()} {GetMaxCpuCountArg()}";
|
|
}
|
|
}
|
|
|
|
private string GetMaxCpuCountArg()
|
|
{
|
|
if (MaxCpuCount > 0)
|
|
{
|
|
return $"/m:{MaxCpuCount}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetVerbosityArg()
|
|
{
|
|
if (!string.IsNullOrEmpty(Verbosity))
|
|
{
|
|
return $"--verbosity:{Verbosity}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|