Skip to content

Commit a2410b2

Browse files
Remove support for .NET Core 2.1 and netstandard1.0. bump .net to 4.8
1 parent e878589 commit a2410b2

File tree

17 files changed

+19
-34
lines changed

17 files changed

+19
-34
lines changed

Ix.NET/Source/Benchmarks.System.Interactive/Benchmarks.System.Interactive.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
<Optimize>true</Optimize>
77
<Configurations>Current Sources;Ix.net 3.1.1;Ix.net 3.2</Configurations>
88
</PropertyGroup>

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;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net6.0;netcoreapp3.1</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618</NoWarn>
66
</PropertyGroup>
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Interactive Extensions Async Providers Library used to build query providers and express queries over async enumerable sequences.</Description>
55
<AssemblyTitle>Interactive Extensions - Async Providers Library</AssemblyTitle>
6-
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
6+
<TargetFrameworks>net48;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
77
<PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
88
</PropertyGroup>
99

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;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net6.0;netcoreapp3.1</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618;CS8603;CS8625</NoWarn>
66
</PropertyGroup>
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.</Description>
55
<AssemblyTitle>Interactive Extensions - Async Library</AssemblyTitle>
6-
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
6+
<TargetFrameworks>net48;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
77
<PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
88
</PropertyGroup>
99

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@
33
<PropertyGroup>
44
<Description>Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.</Description>
55
<AssemblyTitle>Interactive Extensions - Providers Library</AssemblyTitle>
6-
<TargetFrameworks>net45;netstandard1.0;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net48;netstandard2.0;net6.0</TargetFrameworks>
77
<PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
88
</PropertyGroup>
99

10-
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
11-
<DefineConstants>$(DefineConstants);CRIPPLED_REFLECTION</DefineConstants>
12-
</PropertyGroup>
13-
1410
<ItemGroup>
1511
<EmbeddedResource Include="Properties\System.Interactive.Providers.rd.xml" />
1612
</ItemGroup>
@@ -20,8 +16,4 @@
2016
<ReferenceAssemblyProjectReference Include="..\refs\System.Interactive.Providers.Ref\System.Interactive.Providers.Ref.csproj" ReferenceOutputAssembly="false" />
2117
</ItemGroup>
2218

23-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
24-
<PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
25-
</ItemGroup>
26-
2719
</Project>

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;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net6.0;netcoreapp3.1</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618;CS8603;CS8625</NoWarn>
66
</PropertyGroup>
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>Interactive Extensions Main Library used to express queries over enumerable sequences.</Description>
55
<AssemblyTitle>Interactive Extensions - Main Library</AssemblyTitle>
66
<Authors>Microsoft</Authors>
7-
<TargetFrameworks>net45;netstandard1.0;netstandard2.0</TargetFrameworks>
7+
<TargetFrameworks>net48;netstandard2.0;net6.0</TargetFrameworks>
88
<PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
99
</PropertyGroup>
1010

Ix.NET/Source/System.Linq.Async.Queryable.Tests/System.Linq.Async.Queryable.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;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net6.0;netcoreapp3.1</TargetFrameworks>
55
<NoWarn>$(NoWarn);CS0618</NoWarn>
66
</PropertyGroup>
77

Ix.NET/Source/System.Linq.Async.Queryable/System.Linq.Async.Queryable.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>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net48;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
55
<Title>System.Linq.Async.Queryable</Title>
66
<PackageTags>LINQ;async;streams;query;provider</PackageTags>
77
<Description>Provides support for Language-Integrated Query (LINQ) over IAsyncQueryable&lt;T&gt; sequences with query providers.</Description>

0 commit comments

Comments
 (0)