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 includes updates to migrate the project from .NET 8.0 to .NET 9.0, along with minor improvements to project files and Razor Pages. The most significant changes include updating the target framework, Docker image, and workflow configuration, as well as minor content and metadata updates.
Fixes #56
Migration to .NET 9.0:
.devcontainer/devcontainer.json
to usemcr.microsoft.com/devcontainers/dotnet:9.0
instead of8.0
..NET SDK
version in.github/workflows/dotnet.yml
to9.0.x
.TargetFramework
in multiple.csproj
files across lessons 2 to 5 fromnet8.0
tonet9.0
.Razor Pages Updates:
Index.cshtml
to point to the latest ASP.NET Core documentation (learn.microsoft.com
).<script type="importmap"></script>
tag inPages/Shared/_Layout.cshtml
for potential future JavaScript module usage.Pages/Shared/_Layout.cshtml
from 2023 to 2025.Minor Project File and Metadata Updates:
RazorPagesPizza.sln
.using
directives inError.cshtml.cs
for better organization.Error.cshtml.cs
andPrivacy.cshtml.cs
. [1] [2]