mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-20 21:58:45 +00:00
Correct assumption about directory separators
This commit is contained in:
@@ -62,7 +62,7 @@ namespace BinaryObjectScanner
|
||||
#endif
|
||||
|
||||
// Preprocess the list of files
|
||||
files = files?.Select(f => f.Replace('\\', '/'))?.ToList();
|
||||
files = files?.Select(f => f.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar))?.ToList();
|
||||
|
||||
// Iterate through all checks
|
||||
#if NET20 || NET35
|
||||
|
||||
Reference in New Issue
Block a user