mirror of
https://github.com/Ellpeck/GameBundle.git
synced 2024-11-22 16:48:34 +01:00
only print app name if verbose
This commit is contained in:
parent
e81b162d59
commit
88856c8c2f
1 changed files with 2 additions and 1 deletions
|
@ -128,6 +128,7 @@ namespace GameBundle {
|
|||
if (!string.IsNullOrEmpty(file.Extension))
|
||||
continue;
|
||||
if (files.Any(f => f.Extension == ".dll" && Path.GetFileNameWithoutExtension(f.Name) == file.Name)) {
|
||||
if (options.Verbose)
|
||||
Console.WriteLine($"Choosing app name {file.Name} from binary");
|
||||
appName = file.Name;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue