Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
Merge branch .NET 6.0 support; increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
jburnett committed Nov 9, 2021
2 parents 0d75811 + 85e993f commit 27c77c5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
- name: Setup .NET 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.401
dotnet-version: 5.0.403
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.413
dotnet-version: 3.1.415
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
6 changes: 4 additions & 2 deletions AMT.LinqExtensions/AMT.LinqExtensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,22 @@
<GenerateNeutralResourcesLanguageAttribute />

<Description>A few LINQ Extensions we find useful.</Description>
<PackageReleaseNotes>Supports .NET Core 3.1 &amp; .NET 5.0</PackageReleaseNotes>
<PackageReleaseNotes>Supports .NET Core 3.1, .NET 5.0, &amp; .NET 6.0</PackageReleaseNotes>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AltaModaTech/LINQExtensions</PackageProjectUrl>
<PackageTags>LINQ</PackageTags>
<Title>LINQ Extensions by AltaModa Technologies</Title>
</PropertyGroup>

<!--
.NET 6.0 (LTS) EOL 11/8/2024
.NET Core 3.1 (LTS) EOL 12/3/2022
.NET 5.0 EOL 5/8/2022
.NET Core 2.1 (LTS) EOL 8/21/2021
.NET Core 1.1 EOL 6/27/2019
-->
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net5.0;net6.0</TargetFrameworks>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Assembly version & attribute controls -->
<PropertyGroup>
<VersionPrefix>3.1.0</VersionPrefix>
<VersionPrefix>3.2.0</VersionPrefix>

<GenerateAssemblyConfigurationAttribute>true</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>true</GenerateAssemblyCompanyAttribute>
Expand Down
4 changes: 3 additions & 1 deletion test/test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@
</PropertyGroup>

<!--
.NET 6.0 (LTS) EOL 11/8/2024
.NET Core 3.1 (LTS) EOL 12/3/2022
.NET 5.0 EOL 5/8/2022
.NET Core 2.1 (LTS) EOL 8/21/2021
.NET Core 1.1 EOL 6/27/2019
-->
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 27c77c5

Please sign in to comment.