Merged
Conversation
Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update backend to .NET 10
Upgrade backend to .NET 10
Nov 14, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the backend infrastructure from .NET 9 to .NET 10 as requested by the maintainer.
- Updated all three backend projects to target
net10.0 - Upgraded Docker images to use .NET 10.0 SDK and runtime
- Updated Entity Framework Core, JWT Bearer authentication, and Npgsql packages to version 10.0.0 (Npgsql uses RC due to unavailability of stable release)
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj | Updated target framework to net10.0 |
| PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj | Updated target framework to net10.0 |
| PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj | Updated target framework to net10.0 |
| Dockerfile | Updated SDK base image to dotnet/sdk:10.0 for build stage |
| Directory.Packages.props | Upgraded EF Core packages to 10.0.0, JWT Bearer to 10.0.0, and Npgsql to 10.0.0-rc.2 |
PhantomDave
added a commit
that referenced
this pull request
Nov 14, 2025
#54) * refactor(app.config): remove redundant comment about UploadHttpLink usage * Upgrade backend to .NET 10 (#55) * Initial plan * Update backend to .NET 10 Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
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.
Migrated the entire backend stack from .NET 9.0 to .NET 10 per maintainer request.
Framework Updates
TargetFrameworktonet10.0in all three projects (Api, Data, Library)mcr.microsoft.com/dotnet/sdk:10.0Package Updates
9.0.11→10.0.0Microsoft.AspNetCore.Authentication.JwtBearer9.0.11→10.0.09.0.4→10.0.0-rc.2(stable 10.0.0 not yet available)Note: Npgsql package shows NU1608 warnings due to version constraint mismatch between its RC dependencies and the stable EF Core 10.0.0. This is expected and does not affect functionality.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.