Core.Globals is definitely good

This commit is contained in:
Matt Nadareski
2024-10-24 05:58:03 -04:00
parent dd06c076d7
commit 5185dde9a5
10 changed files with 62 additions and 60 deletions

View File

@@ -80,7 +80,7 @@ namespace SabreTools.DatTools
// Now loop through and get only directories from the input paths
List<string> directories = [];
#if NET452_OR_GREATER || NETCOREAPP
Parallel.ForEach(inputs, Globals.ParallelOptions, input =>
Parallel.ForEach(inputs, Core.Globals.ParallelOptions, input =>
#elif NET40_OR_GREATER
Parallel.ForEach(inputs, input =>
#else