diff --git a/MoreLinq/Extensions.g.cs b/MoreLinq/Extensions.g.cs index 5e45fc65f..c3b2305bf 100644 --- a/MoreLinq/Extensions.g.cs +++ b/MoreLinq/Extensions.g.cs @@ -6377,6 +6377,7 @@ public static Dictionary ToDictionary(this IEnumerab } +#if !NET472 /// ToHashSet extension. [GeneratedCode("MoreLinq.ExtensionsGenerator", "1.0.0.0")] @@ -6414,6 +6415,7 @@ public static HashSet ToHashSet(this IEnumerable sour => MoreEnumerable.ToHashSet(source, comparer); } +#endif /// ToLookup extension. diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index aaa0380e4..82e67c523 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -119,7 +119,7 @@ en-US 3.3.1 MoreLINQ Developers. - net451;netstandard1.0;netstandard2.0 + net451;net472;netstandard1.0;netstandard2.0 8 true portable @@ -146,7 +146,7 @@ - + runtime; build; native; contentfiles; analyzers all @@ -184,7 +184,7 @@ - + $(DefineConstants);MORELINQ @@ -197,7 +197,7 @@ - + diff --git a/MoreLinq/ToHashSet.cs b/MoreLinq/ToHashSet.cs index ef6df582a..4d5337ab3 100644 --- a/MoreLinq/ToHashSet.cs +++ b/MoreLinq/ToHashSet.cs @@ -15,6 +15,7 @@ // limitations under the License. #endregion +#if !NET472 namespace MoreLinq { using System; @@ -60,3 +61,4 @@ public static HashSet ToHashSet(this IEnumerable sour } } } +#endif