mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 06:45:11 +00:00
Fix build issue
This commit is contained in:
@@ -1154,9 +1154,13 @@ namespace SabreTools.Serialization.Wrappers
|
||||
|
||||
foreach (string? s in st.Values)
|
||||
{
|
||||
#if NETFRAMEWORK || NETSTANDARD
|
||||
if (s == null || !s.Contains(entry))
|
||||
#else
|
||||
if (s == null || !s.Contains(entry, StringComparison.OrdinalIgnoreCase))
|
||||
continue;
|
||||
|
||||
#endif
|
||||
continue;
|
||||
|
||||
stringTables.Add(st);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user