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.
Introduced new main next (2.0 version) with net9/net8 support.
Updated CI/cake to latest version
Removed old dep.
Minor improvements/Fix vulnerabilities
This pull request includes several updates to dependencies, workflow configurations, and code cleanup. The most important changes involve updating the .NET version, modifying workflow files, and cleaning up the
build.cake
file.Dependency and tool updates:
cake.tool
version from 1.3.0 to 5.0.0 in.config/dotnet-tools.json
and.github/workflows/build.yml
and.github/workflows/publish.yml
files. [1] [2] [3]build.cake
, includingdotnet-reportgenerator-globaltool
,coveralls.net
, anddotnet-sonarscanner
.Workflow configuration updates:
runs-on
environment fromubuntu-22.04
toubuntu-24.04
in bothbuild.yml
andpublish.yml
workflow files. [1] [2]Code cleanup and refactoring:
HomeController.cs
,ErrorViewModel.cs
, and various model files. [1] [2] [3] [4] [5] [6] [7] [8]build.cake
, such as replacingDotNetCoreBuild
withDotNetBuild
andDotNetCoreTest
withDotNetTest
. [1] [2] [3] [4]Project and configuration updates:
net9.0
inexamples/MvcExample/MvcExample.csproj
.9.0.100
inglobal.json
.View files updates:
@using Microsoft.AspNetCore.Mvc.TagHelpers
to several view files to enhance tag helper support. [1] [2] [3] [4] [5]