Skip to content

.NET 7 and .NET MAUI

David Ortinau edited this page Apr 27, 2022 · 5 revisions

.NET 7 previews have begun shipping! After .NET MAUI GA release (see roadmap), we will start including .NET MAUI workloads in the .NET 7 preview releases. Until then, .NET MAUI requires .NET 6.

From Visual Studio 2022, no changes are needed to continue building .NET MAUI applications

To pin your applications to .NET 6 for the time being, use a global.json within your project directory.

{
    "sdk": {
      "version": "6.0.300",
      "rollForward": "latestMinor"
    }
  }
Clone this wiki locally