Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request upgrades the project to .NET 9.0 and updates several associated package dependencies and configurations to ensure compatibility with the new framework version. Key changes include the updated TargetFramework values in multiple project files, upgraded package versions across client, server, and test projects, and adjustments in deployment configurations and infrastructure as code.
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| QuizExperiment.Models/QuizExperiment.Models.csproj | Updated TargetFramework from net8.0 to net9.0 |
| QuizExperiment.Models.Test/QuizExperiment.Models.Test.csproj | Updated TargetFramework and test packages with additional attributes for asset management |
| QuizExperiment.Admin/Server/QuizExperiment.Admin.Server.csproj | Updated TargetFramework and various package versions to their .NET 9-compatible versions |
| QuizExperiment.Admin/Client/QuizExperiment.Admin.Client.csproj | Updated TargetFramework and package versions for Blazor and related libraries |
| Env/main.bicep | Changed linuxFxVersion and linuxFxBetaVersion from DOTNETCORE |
| .github/workflows/build_and_deploy_beta_application.yml | Updated dotnet-version from 8.0.x to 9.0.x |
| .github/workflows/build_and_deploy_application.yml | Updated dotnet-version from 8.0.x to 9.0.x |
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 upgrades the project to .NET 9.0 and updates associated dependencies across multiple files. The changes ensure compatibility with the latest framework version and enhance functionality by using updated package versions.
Framework Upgrade:
.github/workflows/build_and_deploy_application.yml: Updateddotnet-versionfrom8.0.xto9.0.x..github/workflows/build_and_deploy_beta_application.yml: Updateddotnet-versionfrom8.0.xto9.0.x.Env/main.bicep: ChangedlinuxFxVersionandlinuxFxBetaVersionfromDOTNETCORE|8.0toDOTNETCORE|9.0.TargetFrameworktonet9.0in the following project files:QuizExperiment.Admin/Client/QuizExperiment.Admin.Client.csprojQuizExperiment.Admin/Server/QuizExperiment.Admin.Server.csprojQuizExperiment.Models.Test/QuizExperiment.Models.Test.csprojQuizExperiment.Models/QuizExperiment.Models.csprojDependency Updates:
QuizExperiment.Admin/Client/QuizExperiment.Admin.Client.csproj: Updated multiple package references to their latest versions compatible with .NET 9.0, includingBlazorApplicationInsights,Blazored.Toast,Blazorise, andMicrosoft.AspNetCore.Components.WebAssembly.QuizExperiment.Admin/Server/QuizExperiment.Admin.Server.csproj: Updated packages such asAzure.Data.Tables,Azure.Storage.Blobs,Microsoft.SemanticKernel, andSystem.Text.Jsonto newer versions.QuizExperiment.Models.Test/QuizExperiment.Models.Test.csproj: Upgraded testing-related packages likecoverlet.collector,Microsoft.NET.Test.Sdk, andxunitto improve test framework support.#45