From 9abd0606afdde74b62b84ddb37626c60a2a25716 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Fri, 5 Feb 2021 10:25:08 -0800 Subject: [PATCH] Don't match warning/error text from package_tool in DotNetDebTool --- src/core-sdk-tasks/DotNetDebTool.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core-sdk-tasks/DotNetDebTool.cs b/src/core-sdk-tasks/DotNetDebTool.cs index 8d111f171..4c9d3e8bc 100644 --- a/src/core-sdk-tasks/DotNetDebTool.cs +++ b/src/core-sdk-tasks/DotNetDebTool.cs @@ -84,6 +84,11 @@ namespace Microsoft.DotNet.Cli.Build base.LogToolCommand($"{GetWorkingDirectory()}> {message}"); } + protected override void LogEventsFromTextOutput(string singleLine, MessageImportance messageImportance) + { + Log.LogMessage(messageImportance, singleLine, null); + } + protected override ProcessStartInfo GetProcessStartInfo( string pathToTool, string commandLineCommands,