Back to Uno

Framework

doc/articles/getting-started/wizard/includes/framework.md

6.6-release-branch-cut1.3 KB
Original Source

This setting lets you choose the .NET version to target. The default is .NET 9.0, but you can also choose .NET 10.0!

  • .NET 9.0

    .NET 9.0, the successor to .NET 8, has a special focus on cloud-native apps and performance. As a Standard Term Support (STS) release, it is now supported for 24 months (until November 10, 2026). See the STS latest announcement for more details.

    [!NOTE] For mobile workloads, there is no change yet, support remains at 18 months. See MAUI support policy for more details.

    dotnetcli
    dotnet new unoapp -tfm net9.0
    
  • .NET 10.0

    .NET 10.0, the successor to .NET 9, includes improvements in performance, C# 14 support, and long-term platform stability. As a Long Term Support (LTS) release, it will be supported for three years (until November 2028). At the moment, it is in preview and the least stable option for new projects.

    dotnetcli
    dotnet new unoapp -tfm net10.0