mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Support ancient .NET in FileTypes
This commit is contained in:
@@ -78,6 +78,7 @@ namespace SabreTools.DatTools
|
||||
try
|
||||
{
|
||||
// Write out all required formats
|
||||
|
||||
Parallel.ForEach(outfiles.Keys, Globals.ParallelOptions, datFormat =>
|
||||
{
|
||||
string outfile = outfiles[datFormat];
|
||||
@@ -89,8 +90,11 @@ namespace SabreTools.DatTools
|
||||
{
|
||||
logger.Error(ex, $"Datfile '{outfile}' could not be written out");
|
||||
}
|
||||
|
||||
#if NET40_OR_GREATER || NETCOREAPP
|
||||
});
|
||||
#else
|
||||
}
|
||||
#endif
|
||||
}
|
||||
catch (Exception ex) when (!throwOnError)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user