From 0f5601c54211de1b52593bc50c6fa2b4044c3373 Mon Sep 17 00:00:00 2001 From: Andy Sterland Date: Mon, 27 Jan 2020 13:36:10 -0800 Subject: [PATCH] Changing the output text to say 'dump' rather than 'minidump' to avoid confusion with the minidump file format over in windows land. (#772) --- src/Tools/dotnet-dump/Dumper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/dotnet-dump/Dumper.cs b/src/Tools/dotnet-dump/Dumper.cs index 3f1c37d50..bde84a83d 100644 --- a/src/Tools/dotnet-dump/Dumper.cs +++ b/src/Tools/dotnet-dump/Dumper.cs @@ -49,7 +49,7 @@ namespace Microsoft.Diagnostics.Tools.Dump output = Path.GetFullPath(output); // Display the type of dump and dump path - string dumpTypeMessage = type == DumpTypeOption.Mini ? "minidump" : "minidump with heap"; + string dumpTypeMessage = type == DumpTypeOption.Mini ? "dump" : "dump with heap"; console.Out.WriteLine($"Writing {dumpTypeMessage} to {output}"); if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) -- 2.34.1