Remove library-level assignments in Scanner

This commit is contained in:
Matt Nadareski
2022-05-01 14:00:20 -07:00
parent ee85f2f6f0
commit ef212fc8d9

View File

@@ -20,17 +20,17 @@ namespace BurnOutSharp
/// <summary>
/// Determines if debug information is output or not
/// </summary>
public bool IncludeDebug { get; set; } = false;
public bool IncludeDebug { get; set; }
/// <summary>
/// Determines whether archives are decompressed and scanned
/// </summary>
public bool ScanArchives { get; set; } = true;
public bool ScanArchives { get; set; }
/// <summary>
/// Determines if packers are counted as detected protections or not
/// </summary>
public bool ScanPackers { get; set; } = false;
public bool ScanPackers { get; set; }
/// <summary>
/// Cache for all IPathCheck types