Skip to content

Commit 93386a9

Browse files
Merge pull request #1671 from dotnet/update-defines
2 parents 1086d15 + 90f8a4d commit 93386a9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Ix.NET/Source/System.Interactive/System/Linq/Operators/Max.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace System.Linq
99
public static partial class EnumerableEx
1010
{
1111

12-
#if !(REFERENCE_ASSEMBLY && (NET6_0))
12+
#if !(REFERENCE_ASSEMBLY && (NET6_0_OR_GREATER))
1313
/// <summary>
1414
/// Returns the maximum value in the enumerable sequence by using the specified comparer to compare values.
1515
/// </summary>

Ix.NET/Source/System.Interactive/System/Linq/Operators/MaxBy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace System.Linq
88
{
99
public static partial class EnumerableEx
1010
{
11-
#if !(REFERENCE_ASSEMBLY && (NET6_0))
11+
#if !(REFERENCE_ASSEMBLY && (NET6_0_OR_GREATER))
1212
/// <summary>
1313
/// Returns the elements with the maximum key value by using the default comparer to compare key values.
1414
/// </summary>

Ix.NET/Source/System.Interactive/System/Linq/Operators/Min.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace System.Linq
88
{
99
public static partial class EnumerableEx
1010
{
11-
#if !(REFERENCE_ASSEMBLY && (NET6_0))
11+
#if !(REFERENCE_ASSEMBLY && (NET6_0_OR_GREATER))
1212
/// <summary>
1313
/// Returns the minimum value in the enumerable sequence by using the specified comparer to compare values.
1414
/// </summary>

Ix.NET/Source/System.Interactive/System/Linq/Operators/MinBy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace System.Linq
99
public static partial class EnumerableEx
1010
{
1111

12-
#if !(REFERENCE_ASSEMBLY && (NET6_0))
12+
#if !(REFERENCE_ASSEMBLY && (NET6_0_OR_GREATER))
1313
/// <summary>
1414
/// Returns the elements with the minimum key value by using the default comparer to compare key values.
1515
/// </summary>

Ix.NET/Source/System.Interactive/System/Linq/Operators/SkipLast.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace System.Linq
88
{
99
public static partial class EnumerableEx
1010
{
11-
#if !(REFERENCE_ASSEMBLY && (NETCOREAPP2_1 || NETSTANDARD2_1))
11+
#if !(REFERENCE_ASSEMBLY && (NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER))
1212
/// <summary>
1313
/// Bypasses a specified number of contiguous elements from the end of the sequence and returns the remaining elements.
1414
/// </summary>

Ix.NET/Source/System.Interactive/System/Linq/Operators/TakeLast.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace System.Linq
88
{
99
public static partial class EnumerableEx
1010
{
11-
#if !(REFERENCE_ASSEMBLY && (NETCOREAPP2_1 || NETSTANDARD2_1 ))
11+
#if !(REFERENCE_ASSEMBLY && (NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER ))
1212
/// <summary>
1313
/// Returns a specified number of contiguous elements from the end of the sequence.
1414
/// </summary>

Ix.NET/Source/System.Linq.Async.SourceGenerator/System.Linq.Async.SourceGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="all" />
8+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" PrivateAssets="all" />
99
<PackageReference Include="IsExternalInit" Version="1.0.2" PrivateAssets="all" />
1010
</ItemGroup>
1111
</Project>

0 commit comments

Comments
 (0)