5ebc6a1ceb
* Eliminate CleanPublishOutput * Decompose Crossgen Task * WiP * TarGzFileExtractToDirectory * FixModeFlags --> CHMod Also various eliminations of dead code * Tasks cleanup Move all tasks to .tasks file. There is little value in keepint them in each source file as they are already being used assumptively by files that happen to get executed later. Also eliminating uses of <Exec> for DotNet invocations * Move to BuildTools implementation of TarGzCreateFromDirectory * Eliminate Command.cs and helpers * Remove dead code * Revert TarGz from BuildTools Latest build tools package has not picked up the task, though it is checked in. * Disable ChMod on Windows * Windows bug fix * PR Feedback * Finish changing Chmod caps
63 lines
1.7 KiB
C#
63 lines
1.7 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 DotNetTool : ToolTask
|
|
{
|
|
public DotNetTool()
|
|
{
|
|
}
|
|
|
|
protected abstract string Command { get; }
|
|
|
|
protected abstract string Args { get; }
|
|
|
|
public string WorkingDirectory { get; set; }
|
|
|
|
protected override string ToolName
|
|
{
|
|
get { return $"dotnet{Constants.ExeSuffix}"; }
|
|
}
|
|
|
|
protected override MessageImportance StandardOutputLoggingImportance
|
|
{
|
|
get { return MessageImportance.High; } // or else the output doesn't get logged by default
|
|
}
|
|
|
|
protected override string GenerateFullPathToTool()
|
|
{
|
|
string path = ToolPath;
|
|
|
|
// if ToolPath was not provided by the MSBuild script
|
|
if (string.IsNullOrEmpty(path))
|
|
{
|
|
Log.LogError($"Could not find the Path to {ToolName}");
|
|
|
|
return string.Empty;
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
protected override string GetWorkingDirectory()
|
|
{
|
|
return WorkingDirectory ?? base.GetWorkingDirectory();
|
|
}
|
|
|
|
protected override string GenerateCommandLineCommands()
|
|
{
|
|
return $"{Command} {Args}";
|
|
}
|
|
|
|
protected override void LogToolCommand(string message)
|
|
{
|
|
base.LogToolCommand($"{GetWorkingDirectory()}> {message}");
|
|
}
|
|
}
|
|
}
|