Skip to content

Commit e878589

Browse files
Merge pull request #1660 from dotnet/update-ix-to-6-0
2 parents ee18fe9 + 4f2556f commit e878589

File tree

27 files changed

+46
-20
lines changed

27 files changed

+46
-20
lines changed

Ix.NET/Source/ApiCompare/ApiCompare.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

Ix.NET/Source/FasterLinq/FasterLinq.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
</Project>

Ix.NET/Source/Playground/Playground.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

Ix.NET/Source/System.Interactive.Async.Providers.Tests/System.Interactive.Async.Providers.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;net461;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;net461;netcoreapp3.1;net6.0</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618</NoWarn>
66
</PropertyGroup>
77

Ix.NET/Source/System.Interactive.Async.Tests/System.Interactive.Async.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;net461;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;net461;netcoreapp3.1;net6.0</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618;CS8603;CS8625</NoWarn>
66
</PropertyGroup>
77

Ix.NET/Source/System.Interactive.Providers/System.Interactive.Providers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<ItemGroup>
1919
<ProjectReference Include="..\System.Interactive\System.Interactive.csproj" />
20-
<ReferenceAssemblyProjectReference Include="..\refs\System.Interactive.Providers.Ref\System.Interactive.Providers.Ref.csproj" />
20+
<ReferenceAssemblyProjectReference Include="..\refs\System.Interactive.Providers.Ref\System.Interactive.Providers.Ref.csproj" ReferenceOutputAssembly="false" />
2121
</ItemGroup>
2222

2323
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">

Ix.NET/Source/System.Interactive.Tests/System.Interactive.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;net461;net6.0</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618;CS8603;CS8625</NoWarn>
66
</PropertyGroup>
77

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace Tests
1111
{
1212
public class Max : Tests
1313
{
14+
#if !NET6_0_OR_GREATER
1415
[Fact]
1516
public void Max_Arguments()
1617
{
@@ -31,5 +32,6 @@ public int Compare(int x, int y)
3132
return Comparer<int>.Default.Compare(x % 7, y % 7);
3233
}
3334
}
35+
#endif
3436
}
3537
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace Tests
1111
{
1212
public class MaxBy : Tests
1313
{
14+
#if !NET6_0_OR_GREATER
1415
[Fact]
1516
public void MaxBy_Arguments()
1617
{
@@ -33,5 +34,6 @@ public void MaxBy_Empty()
3334
{
3435
AssertThrows<InvalidOperationException>(() => Enumerable.Empty<int>().MaxBy(x => x));
3536
}
37+
#endif
3638
}
3739
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace Tests
1111
{
1212
public class Min : Tests
1313
{
14+
#if !NET6_0_OR_GREATER
1415
[Fact]
1516
public void Min_Arguments()
1617
{
@@ -31,5 +32,6 @@ public int Compare(int x, int y)
3132
return Comparer<int>.Default.Compare(x % 3, y % 3);
3233
}
3334
}
35+
#endif
3436
}
3537
}

0 commit comments

Comments
 (0)