net 9 support + version bump #32
Merged
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.0
and upgraded theMicrosoft.AspNetCore.Components.WebAssembly.Server
package to version9.0.5
.DataTables.Blazor.Demo/DataTables.Blazor.Demo.csproj
: Updated the target framework tonet9.0
and upgradedMicrosoft.AspNetCore.Components.WebAssembly
andMicrosoft.AspNetCore.Components.WebAssembly.DevServer
to version9.0.5
.DataTables.Blazor.Demo.Server/packages.lock.json
andDataTables.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-dotnet
to versionv4
for 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-nuget
action to versionv3.1.0
for publishing packages.