More consistent naming

This commit is contained in:
Matt Nadareski
2020-10-31 14:48:25 -07:00
parent aa3afd676b
commit d365dd1164
3 changed files with 3 additions and 3 deletions

View File

@@ -251,7 +251,7 @@ namespace BurnOutSharp.FileType
#region Packers
// If we're looking for packers too, run scans
if (scanner.IncludePackers)
if (scanner.ScanPackers)
{
// Armadillo

View File

@@ -34,7 +34,7 @@ namespace BurnOutSharp
/// <summary>
/// Determines if packers are counted as detected protections or not
/// </summary>
public bool IncludePackers { get; set; } = false;
public bool ScanPackers { get; set; } = false;
/// <summary>
/// Constructor

View File

@@ -19,7 +19,7 @@ namespace Test
IncludePosition = true,
ScanAllFiles = false,
ScanArchives = true,
IncludePackers = true,
ScanPackers = true,
};
foreach (string arg in args)