diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d37f70d..65a930c 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -31,6 +31,7 @@ jobs: 7 8 9.0.201 + 10.0.100 - name: Install .NET tools run: dotnet tool restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b30b53b..1b7df84 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,6 +31,7 @@ jobs: 7 8 9.0.201 + 10.0.100 - name: Install .NET tools run: dotnet tool restore diff --git a/.github/workflows/test-version.yml b/.github/workflows/test-version.yml index 6507774..236180d 100644 --- a/.github/workflows/test-version.yml +++ b/.github/workflows/test-version.yml @@ -27,6 +27,7 @@ jobs: 7 8 9.0.201 + 10.0.100 - name: Override CSharpFunctionalExtensions Version run: | diff --git a/CSharpFunctionalExtensions.HttpResults.Examples/CSharpFunctionalExtensions.HttpResults.Examples.csproj b/CSharpFunctionalExtensions.HttpResults.Examples/CSharpFunctionalExtensions.HttpResults.Examples.csproj index 8fb84cb..18b0964 100644 --- a/CSharpFunctionalExtensions.HttpResults.Examples/CSharpFunctionalExtensions.HttpResults.Examples.csproj +++ b/CSharpFunctionalExtensions.HttpResults.Examples/CSharpFunctionalExtensions.HttpResults.Examples.csproj @@ -1,16 +1,16 @@ - net9.0 + net10.0 enable enable - - - - + + + + diff --git a/CSharpFunctionalExtensions.HttpResults.Examples/Features/CRUD/BooksGroup.cs b/CSharpFunctionalExtensions.HttpResults.Examples/Features/CRUD/BooksGroup.cs index 8d526de..0d75c66 100644 --- a/CSharpFunctionalExtensions.HttpResults.Examples/Features/CRUD/BooksGroup.cs +++ b/CSharpFunctionalExtensions.HttpResults.Examples/Features/CRUD/BooksGroup.cs @@ -13,7 +13,6 @@ public static IEndpointRouteBuilder MapBooksGroup(this IEndpointRouteBuilder end { endpointRouteBuilder .MapGroup("/books") - .WithOpenApi() .MapGetBooks() .MapFindBook() .MapFindBookCover() diff --git a/CSharpFunctionalExtensions.HttpResults.Generators.Tests/CSharpFunctionalExtensions.HttpResults.Generators.Tests.csproj b/CSharpFunctionalExtensions.HttpResults.Generators.Tests/CSharpFunctionalExtensions.HttpResults.Generators.Tests.csproj index f4d3f35..c2e3521 100644 --- a/CSharpFunctionalExtensions.HttpResults.Generators.Tests/CSharpFunctionalExtensions.HttpResults.Generators.Tests.csproj +++ b/CSharpFunctionalExtensions.HttpResults.Generators.Tests/CSharpFunctionalExtensions.HttpResults.Generators.Tests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false @@ -15,10 +15,10 @@ - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/CSharpFunctionalExtensions.HttpResults.Generators/CSharpFunctionalExtensions.HttpResults.Generators.csproj b/CSharpFunctionalExtensions.HttpResults.Generators/CSharpFunctionalExtensions.HttpResults.Generators.csproj index 51dff7c..c3f2d3f 100644 --- a/CSharpFunctionalExtensions.HttpResults.Generators/CSharpFunctionalExtensions.HttpResults.Generators.csproj +++ b/CSharpFunctionalExtensions.HttpResults.Generators/CSharpFunctionalExtensions.HttpResults.Generators.csproj @@ -21,7 +21,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/CSharpFunctionalExtensions.HttpResults.Tests/CSharpFunctionalExtensions.HttpResults.Tests.csproj b/CSharpFunctionalExtensions.HttpResults.Tests/CSharpFunctionalExtensions.HttpResults.Tests.csproj index c2a6d64..babf0f4 100644 --- a/CSharpFunctionalExtensions.HttpResults.Tests/CSharpFunctionalExtensions.HttpResults.Tests.csproj +++ b/CSharpFunctionalExtensions.HttpResults.Tests/CSharpFunctionalExtensions.HttpResults.Tests.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0;net9.0 + net7.0;net8.0;net9.0;net10.0 enable enable latest @@ -13,7 +13,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/CSharpFunctionalExtensions.HttpResults/CSharpFunctionalExtensions.HttpResults.csproj b/CSharpFunctionalExtensions.HttpResults/CSharpFunctionalExtensions.HttpResults.csproj index ebfbd69..2076840 100644 --- a/CSharpFunctionalExtensions.HttpResults/CSharpFunctionalExtensions.HttpResults.csproj +++ b/CSharpFunctionalExtensions.HttpResults/CSharpFunctionalExtensions.HttpResults.csproj @@ -1,7 +1,7 @@  - net7.0;net8.0;net9.0 + net7.0;net8.0;net9.0;net10.0 enable enable latest diff --git a/global.json b/global.json index 039c683..6a6aeda 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.201", + "version": "10.0.100", "rollForward": "latestMinor", "allowPrerelease": false }