net 9 support + version bump#32
Merged
JustinWilkinson merged 5 commits intoJustinWilkinson:masterfrom Jun 25, 2025
Merged
Conversation
Updated the package version from 3.6.2 to 3.6.3 and changed the copyright year from 2024 to 2025.
Updated the GitHub Actions workflow in `main.yml` to use version 4 of the `actions/setup-dotnet` action for .NET Core versions 3.1, 5.0, 6.0, 7.0, and 8.0. Added a step for .NET 9.0 setup. Also updated the `publish-nuget` action from version 3.0.4 to 3.1.0.
JustinWilkinson
approved these changes
Jun 25, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the project to support .NET 9.0 and its associated dependencies, along with updates to the GitHub Actions workflows. The changes primarily focus on upgrading the target framework, package dependencies, and workflow configurations.
Framework and Dependency Updates:
DataTables.Blazor.Demo.Server/DataTables.Blazor.Demo.Server.csproj: Updated the target framework tonet9.0and upgraded theMicrosoft.AspNetCore.Components.WebAssembly.Serverpackage to version9.0.5.DataTables.Blazor.Demo/DataTables.Blazor.Demo.csproj: Updated the target framework tonet9.0and upgradedMicrosoft.AspNetCore.Components.WebAssemblyandMicrosoft.AspNetCore.Components.WebAssembly.DevServerto version9.0.5.DataTables.Blazor.Demo.Server/packages.lock.jsonandDataTables.Blazor.Demo/packages.lock.json: Updated transitive and direct dependencies to align with .NET 9.0 versions.Workflow Configuration Updates:
.github/workflows/main.yml: Updatedactions/setup-dotnetto versionv4for compatibility with .NET 9.0 and added support for setting up .NET 9.0 in the CI/CD pipeline..github/workflows/main.yml: Upgraded thealirezanet/publish-nugetaction to versionv3.1.0for publishing packages.