mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-29 01:50:24 +00:00
Fix version printing
This commit is contained in:
@@ -188,11 +188,11 @@ namespace BurnOutSharp.Tools
|
||||
{
|
||||
string version = pex.FileVersion;
|
||||
if (!string.IsNullOrWhiteSpace(version))
|
||||
return version;
|
||||
return version.Replace(", ", ".");
|
||||
|
||||
version = pex.ProductVersion;
|
||||
if (!string.IsNullOrWhiteSpace(version))
|
||||
return version;
|
||||
return version.Replace(", ", ".");
|
||||
|
||||
version = pex.AssemblyVersion;
|
||||
if (!string.IsNullOrWhiteSpace(version))
|
||||
|
||||
Reference in New Issue
Block a user