Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/core/install/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ The only required change to upgrade an app is updating the `TargetFramework` pro

Here's how to do it:

* Open the project file (the `*.csproj`, `*.vbproj`, or `*.fsproj` file).
* Change the `<TargetFramework>` property value from, for example, `net6.0` to `net8.0`.
* The same pattern applies for the `<TargetFrameworks>` property if it is being used.
- Open the project file (the `*.csproj`, `*.vbproj`, or `*.fsproj` file).
- Change the `<TargetFramework>` property value from, for example, `net6.0` to `net8.0`.
- The same pattern applies for the `<TargetFrameworks>` property if it is being used.

> [!TIP]
> The [GitHub Copilot app modernization - upgrade](../porting/github-copilot-app-modernization-overview.md) capability can make these changes automatically.
Expand All @@ -47,9 +47,9 @@ You might need to run `dotnet workload restore` to restore workloads with the ne

More resources:

* [Breaking changes in .NET 9](../compatibility/9.0.md)
* [Migrate from ASP.NET Core in .NET 7 to .NET 8](/aspnet/core/migration/70-80?tabs=visual-studio)
* [Upgrade .NET MAUI from .NET 7 to .NET 8](https://github.com/dotnet/maui/wiki/Upgrading-.NET-MAUI-from-.NET-7-to-.NET-8)
- [Breaking changes in .NET 9](../compatibility/9.0.md)
- [Migrate an ASP.NET Core app](/aspnet/core/migration/)
- [Upgrade .NET MAUI from .NET 7 to .NET 8](https://github.com/dotnet/maui/wiki/Upgrading-.NET-MAUI-from-.NET-7-to-.NET-8)

## Update continuous integration (CI)

Expand Down