From af00cc664ba1f9eda74a4a451765cc7c093d5d7b Mon Sep 17 00:00:00 2001 From: Manuel de la Pena Date: Mon, 28 Mar 2022 11:52:04 -0400 Subject: [PATCH] [nnyeah] Update usage to dotnet. (#14514) --- tools/nnyeah/nnyeah/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nnyeah/nnyeah/Program.cs b/tools/nnyeah/nnyeah/Program.cs index 058924bdec..57b713518d 100644 --- a/tools/nnyeah/nnyeah/Program.cs +++ b/tools/nnyeah/nnyeah/Program.cs @@ -8,7 +8,7 @@ namespace nnyeah { static void Main (string [] args) { if (args.Length != 2) { - Console.Error.WriteLine ("Usage: mono nnyeah.exe /path/to/input/file.dll /path/to/output/file.dll"); + Console.Error.WriteLine ("Usage: dotnet nnyeah.dll /path/to/input/file.dll /path/to/output/file.dll"); Environment.Exit (1); } using var stm = new FileStream (args [0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);