mirror of
https://github.com/Ellpeck/GameBundle.git
synced 2024-11-14 04:59:10 +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,7 +128,8 @@ namespace GameBundle {
|
|||
if (!string.IsNullOrEmpty(file.Extension))
|
||||
continue;
|
||||
if (files.Any(f => f.Extension == ".dll" && Path.GetFileNameWithoutExtension(f.Name) == file.Name)) {
|
||||
Console.WriteLine($"Choosing app name {file.Name} from binary");
|
||||
if (options.Verbose)
|
||||
Console.WriteLine($"Choosing app name {file.Name} from binary");
|
||||
appName = file.Name;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue