Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit 0a54705

Browse files
committed
Support .NET Core 2.1 & 3.1; drop 2.0
1 parent 7fc061c commit 0a54705

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

AMT.LinqExtensions/AMT.LinqExtensions.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
<Title>LINQ Extensions by AltaModa Technologies</Title>
2323
</PropertyGroup>
2424

25+
<!--
26+
.NET Core 3.1 (LTS) EOL 12/3/2022
27+
.NET Core 2.1 (LTS) EOL 8/21/2021
28+
.NET Core 1.1 EOL 6/27/2019
29+
-->
2530
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
2631
<TargetFrameworks>netstandard2.0;net461;net462;net47;net471;net472;</TargetFrameworks>
2732
</PropertyGroup>

test/test.csproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>
99

10+
<!--
11+
.NET Core 3.1 (LTS) EOL 12/3/2022
12+
.NET Core 2.1 (LTS) EOL 8/21/2021
13+
.NET Core 1.1 EOL 6/27/2019
14+
-->
1015
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
11-
<TargetFrameworks>netcoreapp2.0;netcoreapp2.1;net461;net462;net47;net471;net472;</TargetFrameworks>
16+
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1;net461;net462;net47;net471;net472;</TargetFrameworks>
1217
</PropertyGroup>
1318
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
14-
<TargetFrameworks>netcoreapp2.0;netcoreapp2.1</TargetFrameworks>
19+
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
1520
</PropertyGroup>
1621

1722
<ItemGroup>

0 commit comments

Comments
 (0)