[nnyeah] Update usage to dotnet. (#14514)

This commit is contained in:
Manuel de la Pena 2022-03-28 11:52:04 -04:00 коммит произвёл GitHub
Родитель 00d9e1ba1a
Коммит af00cc664b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);