diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 809adb3..2585e36 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -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 diff --git a/AMT.LinqExtensions/AMT.LinqExtensions.csproj b/AMT.LinqExtensions/AMT.LinqExtensions.csproj index 3ef2c00..beeda43 100644 --- a/AMT.LinqExtensions/AMT.LinqExtensions.csproj +++ b/AMT.LinqExtensions/AMT.LinqExtensions.csproj @@ -16,7 +16,7 @@ A few LINQ Extensions we find useful. - Supports .NET Core 3.1 & .NET 5.0 + Supports .NET Core 3.1, .NET 5.0, & .NET 6.0 Apache-2.0 https://github.com/AltaModaTech/LINQExtensions LINQ @@ -24,12 +24,14 @@ - netstandard2.1;net5.0 + netstandard2.1;net5.0;net6.0 diff --git a/common.props b/common.props index 81bad10..0f6b36b 100644 --- a/common.props +++ b/common.props @@ -10,7 +10,7 @@ - 3.1.0 + 3.2.0 true true diff --git a/test/test.csproj b/test/test.csproj index 9dc3540..a7898d5 100644 --- a/test/test.csproj +++ b/test/test.csproj @@ -8,12 +8,14 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net5.0;net6.0