Skip to content

Commit f0e6314

Browse files
committed
.
1 parent 07f4946 commit f0e6314

File tree

3 files changed

+12
-27
lines changed

3 files changed

+12
-27
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -76,39 +76,24 @@ jobs:
7676
- name: Build
7777
run: |
7878
dotnet build ./src/System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.csproj -c Debug -p:buildType=azure-pipelines-ci
79-
80-
- name: Run Tests EF net8.0 (with Coverage)
79+
80+
- name: Run Tests .NET 10 (with Coverage)
8181
run: |
82-
dotnet-coverage collect 'dotnet test ./test/EntityFramework.DynamicLinq.Tests/EntityFramework.DynamicLinq.Tests.csproj --configuration Debug --framework net8.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-ef.xml
82+
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net/System.Linq.Dynamic.Core.Tests.Net.csproj --configuration Debug -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-efcore.xml
8383
84-
- name: Run Tests EFCore net8.0 (with Coverage)
84+
- name: Run Tests EF .NET 10 (with Coverage)
8585
run: |
86-
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net8/System.Linq.Dynamic.Core.Tests.Net8.csproj --configuration Debug --framework net8.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-efcore.xml
86+
dotnet-coverage collect 'dotnet test ./test/EntityFramework.DynamicLinq.Tests/EntityFramework.DynamicLinq.Tests.csproj --configuration Debug --framework net10.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-ef.xml
8787
88-
- name: Run Tests Newtonsoft.Json .NET 8 (with Coverage)
88+
- name: Run Tests Newtonsoft.Json .NET 10 (with Coverage)
8989
run: |
90-
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.NewtonsoftJson.Tests/System.Linq.Dynamic.Core.NewtonsoftJson.Tests.csproj --configuration Debug --framework net8.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-newtonsoftjson.xml
90+
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.NewtonsoftJson.Tests/System.Linq.Dynamic.Core.NewtonsoftJson.Tests.csproj --configuration Debug --framework net10.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-newtonsoftjson.xml
9191
92-
- name: Run Tests System.Text.Json .NET 8 (with Coverage)
92+
- name: Run Tests System.Text.Json .NET 10 (with Coverage)
9393
run: |
94-
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.SystemTextJson.Tests/System.Linq.Dynamic.Core.SystemTextJson.Tests.csproj --configuration Debug --framework net8.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-systemtextjson.xml
94+
dotnet-coverage collect 'dotnet test ./test/System.Linq.Dynamic.Core.SystemTextJson.Tests/System.Linq.Dynamic.Core.SystemTextJson.Tests.csproj --configuration Debug --framework net18.0 -p:buildType=azure-pipelines-ci' -f xml -o dynamic-coverage-systemtextjson.xml
9595
9696
- name: End analysis on SonarCloud
9797
if: ${{ steps.secret-check.outputs.run_analysis == 'true' }}
9898
run: |
99-
dotnet sonarscanner end /d:sonar.token=${{ secrets.SONAR_TOKEN }}
100-
101-
# - name: Run Tests EFCore net8.0
102-
# run: |
103-
# dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net7/System.Linq.Dynamic.Core.Tests.Net8.csproj -c Release -p:buildType=azure-pipelines-ci
104-
# continue-on-error: true
105-
106-
# - name: Run Tests EFCore net7.0
107-
# run: |
108-
# dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net7/System.Linq.Dynamic.Core.Tests.Net7.csproj -c Release -p:buildType=azure-pipelines-ci
109-
# continue-on-error: true
110-
111-
# - name: Run Tests EFCore net6.0
112-
# run: |
113-
# dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net6/System.Linq.Dynamic.Core.Tests.Net6.csproj -c Release -p:buildType=azure-pipelines-ci
114-
# continue-on-error: true
99+
dotnet sonarscanner end /d:sonar.token=${{ secrets.SONAR_TOKEN }}

src/System.Linq.Dynamic.Core.NewtonsoftJson/System.Linq.Dynamic.Core.NewtonsoftJson.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a Newtonsoft.Json.JArray</Description>
99
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>
1010
<ProjectGuid>{8C5851B8-5C47-4229-AB55-D4252703598E}</ProjectGuid>
11-
<TargetFrameworks>net45;net452;net46;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
11+
<TargetFrameworks>net45;net452;net46;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0;net10.0</TargetFrameworks>
1212
<Version>1.6.$(PatchVersion)</Version>
1313
</PropertyGroup>
1414

src/System.Linq.Dynamic.Core.SystemTextJson/System.Linq.Dynamic.Core.SystemTextJson.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a System.Text.Json.JsonDocument</Description>
99
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>
1010
<ProjectGuid>{FA01CE15-315A-499E-AFC2-955CA7EB45FF}</ProjectGuid>
11-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
11+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0;net10.0</TargetFrameworks>
1212
<Version>1.6.$(PatchVersion)</Version>
1313
</PropertyGroup>
1414

0 commit comments

Comments
 (0)