Skip to content

Commit

Permalink
Added Invariant string comparer options back for netcore2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrianball committed Feb 5, 2019
1 parent 09e54bd commit e7bf8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Args/ArgsModelAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public StringComparer StringComparer
return StringComparer.CurrentCulture;
case StringComparison.CurrentCultureIgnoreCase:
return StringComparer.CurrentCultureIgnoreCase;
#if NET_FRAKEWORK
#if !NETSTANDARD_1_3
case StringComparison.InvariantCulture:
return StringComparer.InvariantCulture;
case StringComparison.InvariantCultureIgnoreCase:
Expand Down

0 comments on commit e7bf8e4

Please sign in to comment.