Fix modern .NET build

This commit is contained in:
Matt Nadareski
2024-07-17 15:48:37 -04:00
parent 8344e9ae9b
commit 5ca6da14fb
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ namespace SabreTools.DatTools
{ {
// Write out all required formats // Write out all required formats
#if NET452_OR_GREATER || NETCOREAPP #if NET452_OR_GREATER || NETCOREAPP
Parallel.ForEach(outfiles.Keys, Globals.ParallelOptions, reportFormat => Parallel.ForEach(outfiles.Keys, SabreTools.Core.Globals.ParallelOptions, reportFormat =>
#elif NET40_OR_GREATER #elif NET40_OR_GREATER
Parallel.ForEach(outfiles.Keys, reportFormat => Parallel.ForEach(outfiles.Keys, reportFormat =>
#else #else

View File

@@ -80,7 +80,7 @@ namespace SabreTools.DatTools
{ {
// Write out all required formats // Write out all required formats
#if NET452_OR_GREATER || NETCOREAPP #if NET452_OR_GREATER || NETCOREAPP
Parallel.ForEach(outfiles.Keys, Globals.ParallelOptions, datFormat => Parallel.ForEach(outfiles.Keys, SabreTools.Core.Globals.ParallelOptions, datFormat =>
#elif NET40_OR_GREATER #elif NET40_OR_GREATER
Parallel.ForEach(outfiles.Keys, datFormat => Parallel.ForEach(outfiles.Keys, datFormat =>
#else #else