diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80599d2..210ed6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.x + dotnet-version: 9.x - name: Set Variables run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e68455..7b46613 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.x + dotnet-version: 9.x - name: Set Variables run: | diff --git a/AutoMapper.AspNetCore.OData.EF6/AutoMapper.AspNetCore.OData.EF6.csproj b/AutoMapper.AspNetCore.OData.EF6/AutoMapper.AspNetCore.OData.EF6.csproj index 5ce3bd6..0b696fa 100644 --- a/AutoMapper.AspNetCore.OData.EF6/AutoMapper.AspNetCore.OData.EF6.csproj +++ b/AutoMapper.AspNetCore.OData.EF6/AutoMapper.AspNetCore.OData.EF6.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;net8.0 + net8.0;net9.0 AutoMapper.AspNet.OData AutoMapper.AspNetCore.OData.EF6 Creates LINQ expressions from ODataQueryOptions and executes the query. @@ -57,16 +57,16 @@ - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/AutoMapper.AspNetCore.OData.EFCore/AutoMapper.AspNetCore.OData.EFCore.csproj b/AutoMapper.AspNetCore.OData.EFCore/AutoMapper.AspNetCore.OData.EFCore.csproj index 999a362..58c775a 100644 --- a/AutoMapper.AspNetCore.OData.EFCore/AutoMapper.AspNetCore.OData.EFCore.csproj +++ b/AutoMapper.AspNetCore.OData.EFCore/AutoMapper.AspNetCore.OData.EFCore.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;net8.0 + net8.0;net9.0 AutoMapper.AspNet.OData AutoMapper.AspNetCore.OData.EFCore Creates LINQ expressions from ODataQueryOptions and executes the query. @@ -29,25 +29,21 @@ - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - + + - - + + diff --git a/AutoMapper.OData.EF6.Tests/AutoMapper.OData.EF6.Tests.csproj b/AutoMapper.OData.EF6.Tests/AutoMapper.OData.EF6.Tests.csproj index 3e1a2cc..904cf66 100644 --- a/AutoMapper.OData.EF6.Tests/AutoMapper.OData.EF6.Tests.csproj +++ b/AutoMapper.OData.EF6.Tests/AutoMapper.OData.EF6.Tests.csproj @@ -1,19 +1,19 @@ - + - net8.0 + net9.0 false - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/AutoMapper.OData.EFCore.Tests/AutoMapper.OData.EFCore.Tests.csproj b/AutoMapper.OData.EFCore.Tests/AutoMapper.OData.EFCore.Tests.csproj index 32d52ee..b595d35 100644 --- a/AutoMapper.OData.EFCore.Tests/AutoMapper.OData.EFCore.Tests.csproj +++ b/AutoMapper.OData.EFCore.Tests/AutoMapper.OData.EFCore.Tests.csproj @@ -1,16 +1,16 @@  - net8.0 + net9.0 false - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/DAL.EF6/DAL.EF6.csproj b/DAL.EF6/DAL.EF6.csproj index 3124ff7..8183edc 100644 --- a/DAL.EF6/DAL.EF6.csproj +++ b/DAL.EF6/DAL.EF6.csproj @@ -5,8 +5,8 @@ - - + + diff --git a/DAL.EFCore/DAL.EFCore.csproj b/DAL.EFCore/DAL.EFCore.csproj index 58729ad..69f8e47 100644 --- a/DAL.EFCore/DAL.EFCore.csproj +++ b/DAL.EFCore/DAL.EFCore.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;net8.0 + net8.0;net9.0 @@ -13,7 +13,11 @@ - + + + + + diff --git a/ExpressionBuilder.Tests/ExpressionBuilder.Tests.csproj b/ExpressionBuilder.Tests/ExpressionBuilder.Tests.csproj index 78045b6..4d3f7f2 100644 --- a/ExpressionBuilder.Tests/ExpressionBuilder.Tests.csproj +++ b/ExpressionBuilder.Tests/ExpressionBuilder.Tests.csproj @@ -1,15 +1,15 @@ - + - net8.0 + net9.0 false - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/MigrationTool/MigrationTool.csproj b/MigrationTool/MigrationTool.csproj index e6006d6..e1b333c 100644 --- a/MigrationTool/MigrationTool.csproj +++ b/MigrationTool/MigrationTool.csproj @@ -2,17 +2,17 @@ Exe - net8.0 + net9.0 - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/SeedDatabase/SeedDatabase.csproj b/SeedDatabase/SeedDatabase.csproj index 1ad4e50..6452e58 100644 --- a/SeedDatabase/SeedDatabase.csproj +++ b/SeedDatabase/SeedDatabase.csproj @@ -2,13 +2,13 @@ Exe - net8.0 + net9.0 - - - + + + diff --git a/Web.Tests/Web.Tests.csproj b/Web.Tests/Web.Tests.csproj index 6621d0a..b8b2ebe 100644 --- a/Web.Tests/Web.Tests.csproj +++ b/Web.Tests/Web.Tests.csproj @@ -1,18 +1,18 @@ - + - net8.0 + net9.0 false - - - + + + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/WebAPI.OData.EF6/WebAPI.OData.EF6.csproj b/WebAPI.OData.EF6/WebAPI.OData.EF6.csproj index 1bad96c..79001ee 100644 --- a/WebAPI.OData.EF6/WebAPI.OData.EF6.csproj +++ b/WebAPI.OData.EF6/WebAPI.OData.EF6.csproj @@ -1,7 +1,7 @@  - net6.0 + net9.0 diff --git a/WebAPI.OData.EFCore/WebAPI.OData.EFCore.csproj b/WebAPI.OData.EFCore/WebAPI.OData.EFCore.csproj index e103a20..922bd36 100644 --- a/WebAPI.OData.EFCore/WebAPI.OData.EFCore.csproj +++ b/WebAPI.OData.EFCore/WebAPI.OData.EFCore.csproj @@ -1,13 +1,13 @@  - net6.0 + net9.0 - - - + + + diff --git a/WebAPI.OData.EFCore/appsettings.json b/WebAPI.OData.EFCore/appsettings.json index 0e2340a..dc91c7b 100644 --- a/WebAPI.OData.EFCore/appsettings.json +++ b/WebAPI.OData.EFCore/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=.\\SQL2016;Database=YourDB;Trusted_Connection=True;" + "DefaultConnection": "Server=.\\SQL2016;Database=YourDB;Trusted_Connection=True;TrustServerCertificate=True;" }, "Logging": { "LogLevel": {