संपादित करें

इसके माध्यम से साझा किया गया


What is .NET Upgrade Assistant?

.NET Upgrade Assistant helps upgrade projects to newer versions of .NET, and analyzes your code to spot and fix potential incompatibilities. One focus of the tool is to help migrate a project from .NET Framework, .NET Core, or .NET, to the latest version of .NET. You use the extension or tool to upgrade entire .NET projects, or some aspect of the project, such migrating a configuration file from an older type to a newer type.

.NET Upgrade Assistant is distributed as a Visual Studio extension or a command-line interface (CLI) tool.

Analyze and upgrade

.NET Upgrade Assistant includes an analysis engine that scans your projects and their dependencies. After the scan is complete, a report is generated with detailed information about performing an upgrade. You can use this information to upgrade either the entire project or specific parts of the project.

Supported project types

.NET Upgrade Assistant supports upgrading projects coded in either C# or Visual Basic. The following types of projects are supported:

  • ASP.NET
  • Azure Functions
  • Windows Presentation Foundation
  • Windows Forms
  • Class libraries
  • Console apps
  • Xamarin Forms
  • .NET MAUI
  • .NET Native UWP

Some products provide guidance on how to use .NET Upgrade Assistant.

Upgrade paths

The following upgrade paths are supported:

  • .NET Framework to .NET
  • .NET Core to .NET
  • Azure Functions v1-v3 to v4 isolated (targeting net6.0+)
  • UWP to WinUI 3
  • Previous .NET version to the latest .NET version
  • Xamarin Forms to .NET MAUI
    • XAML file transformations only support upgrading namespaces. For more comprehensive transformations, use Visual Studio 2022 version 17.6 or later.

Upgrade details and options

When an upgrade is started, a wizard walks you through configuring some of the options before the upgrade is initiated. Based on the type of project you're upgrading, the wizard presents different options. For an example of upgrading a project, see Upgrade projects with .NET Upgrade Assistant.

How the upgrade should be performed

Based on the type of project you're upgrading, you might be able to change how the upgrade is performed. The type of project affects which options are available, and one or more of the following items might be missing:

  • In-place project upgrade

    This option upgrades your project without making a copy.

  • Side-by-side project upgrade

    Copies your project and upgrades the copy, leaving your original project alone.

  • Side-by-side incremental

    This is a good choice for complicated web apps. Upgrading from ASP.NET to ASP.NET Core requires quite a bit of work and at times manual refactoring. This mode puts a .NET project next to the existing .NET Framework project. Endpoints are routed through the .NET project, while all other calls are sent to .NET Framework application.

    This mode lets you slowly upgrade your ASP.NET or library app piece-by-piece.

Upgrade results

Once the upgrade is finished, a status screen is displayed which shows all of the artifacts associated with the upgrade. Each upgrade artifact can be expanded to read more information about the status. The following list describes the status icons:

  • Unfilled green checkmark: The tool didn't find anything about the artifact to upgrade.
  • Filled green checkmark: The artifact was upgraded and completed successfully.
  • Yellow warning sign: The artifact was upgraded, but there's important information you should consider.
  • Red X: The artifact upgrade was unsuccessful.

The .NET Upgrade Assistant's Upgrade results tab in Visual Studio.

Additionally, the actions the performed during the upgrade are logged to the Output window under the Upgrade Assistant source, as shown in the following image:

The output window in Visual Studio showing the results from the .NET Upgrade Assistant.

After upgrading your project, test it thoroughly!