Maui Versions Save

.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.

8.0.100-rc.2.9530

5 months ago

MAUI Product Fixes

What's Changed

Dependency Updates

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-rc.2.9511...8.0.0-rc.2.9530

8.0.0-rc.2.9511

5 months ago

MAUI Product Fixes

What's Changed

Tests

Docs

Dependency Updates

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-rc.2.9373...8.0.0-rc.2.9511

7.0.100

5 months ago

What's Changed

Tests

Docs

Dependency Updates

Full Changelog: https://github.com/dotnet/maui/compare/7.0.96...7.0.100

7.0.96

6 months ago

What's Changed

MAUI Product Fixes

Dependency Updates

Housekeeping

Full Changelog: https://github.com/dotnet/maui/compare/7.0.92...7.0.96

8.0.0-rc.2.9373

6 months ago

What's Changed

MAUI Product Fixes

Tests

Docs

Dependency Updates

Housekeeping

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-rc.1.9171...8.0.0-rc.2.9373

8.0.0-rc.1.9171

7 months ago

Known Issues

  • Black splash screens on iOS 16.5+ simulators
    The splash screen on iOS simulators are sometimes black if you are not using a developer certificate. Splash screens will still appear on older simulators (such as iOS 15.5) or if you are doing a release build.
    See more https://github.com/xamarin/xamarin-macios/issues/18469
  • Always-visible scrollbars on iOS
    The iOS scroll view does not always size correctly and you may always see a scrollbar.
    See more https://github.com/dotnet/maui/issues/17224
  • Installing .NET MAUI workload fails with signing errors
    Make sure you're using the latest RC1 SDK.

What's Changed

  • New duplicate image errors
    After updating to RC 1, you may see an error about duplicate files (such as with image resources) and this is because previously we did not check for duplicates and the image that was selected was arbitrary. From RC 1, we are now checking to ensure there are no duplicates. Make sure that if you have globs including images, you are not also including images again and instead Update:
    <ItemGroup>
        <MauiImage Include="Resources\Images\*" />
        <!-- this will causes an error: -->
        <MauiImage Include="Resources\Images\myimage.svg" Color="Red" />
        <!-- this will NOT result in an error: -->
        <MauiImage Update="Resources\Images\myimage.svg" Color="Red" />
    </ItemGroup>
    
  • Changes to the way RIDs work
    Although not directly affecting .NET MAUI apps/libraries right now, there was a change to the way the RIDs work in .NET 8 RC 1: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/8.0/rid-graph

MAUI Product Fixes

Tests

Docs

Dependency Updates

Housekeeping

New Contributors

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-preview.7.8842...8.0.0-rc.1.9149

8.0.0-preview.7.8842

8 months ago

How to install?

This release is best with Visual Studio 2022 17.8 Preview 1 on Windows, Visual Studio for Mac latest release, or the .NET MAUI extension for VS Code (Preview).

Windows

Install Visual Studio 2022 17.8 Preview 1 and select the .NET Multi-platform App UI workload, and then check the optional component “.NET MAUI (.NET 8 Preview)”.

Mac

In order to enable the latest Visual Studio for Mac to work with .NET 8 previews, enable .NET 8 previews in the preferences "Preview Features" section.

To install .NET 8 Preview 7 follow the instructions below.

All

Follow these instructions unless you have installed on Windows with the Visual Studio version above.

Download the .NET 8 Preview 7 SDK, followed by:

> dotnet workload install maui
...
Successfully installed workload(s) maui.

To verify installation:

> dotnet workload list

Installed Workload Id      Manifest Version                            Installation Source
--------------------------------------------------------------------------------------------
maui                    8.0.0-preview.7.8842/8.0.100-preview.7      SDK 8.0.100-preview.7

What's Changed

Tests

Docs

Dependency Updates

Housekeeping

New Contributors

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-preview.6.8686...8.0.0-preview.6.8771

8.0.0-preview.6.8686

9 months ago

What's Changed

Dependency Updates

Tests

Docs

Housekeeping


New Contributors

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-preview.5.8606...8.0.0-preview.6.8686

7.0.92

9 months ago

What's Changed

MAUI Product Fixes

  • Update All (most) BindableProperty XML docs (Backport #14704) by @jfversluis in https://github.com/dotnet/maui/pull/15208
  • [net7.0] [Android] Disable caching when loading images from streams by @hartez in https://github.com/dotnet/maui/pull/15274
  • [net7.0] [Windows] Notify changes in CollectionView Layouts by @hartez in https://github.com/dotnet/maui/pull/15250
  • [net7.0] Fix e-mail URI escaping recipients by @github-actions in https://github.com/dotnet/maui/pull/15244
  • [net7.0] Set Version for Windows by @mattleibow in https://github.com/dotnet/maui/pull/15240
  • [net7.0] [Android] Don’t dispose connectivity listeners by @github-actions in https://github.com/dotnet/maui/pull/15379
  • [net7.0] Make layout honor MaxWidth and MaxHeight requests by @github-actions in https://github.com/dotnet/maui/pull/15380
  • [net7.0] Call the correct Disconnect method from DisconnectHandler by @github-actions in https://github.com/dotnet/maui/pull/15382
  • [net7.0] [controls] fix performance issue in {AppThemeBinding} by @github-actions in https://github.com/dotnet/maui/pull/15384
  • [net7.0] Propagate title property to catalyst window by @github-actions in https://github.com/dotnet/maui/pull/15385
  • [net7.0] [Windows] Display alerts by Window by @github-actions in https://github.com/dotnet/maui/pull/15386
  • [net7.0] Update Win2D by @github-actions in https://github.com/dotnet/maui/pull/15401
  • [net7.0] Reinstate WebView Cookies functionality net7 by @jfversluis in https://github.com/dotnet/maui/pull/15405
  • [net7.0] Fix Android WebAuth callback for system browser flows by @hartez in https://github.com/dotnet/maui/pull/15412
  • [net7.0] Set menuItem show action back to Never by @hartez in https://github.com/dotnet/maui/pull/15416
  • [net7.0] Corelib Fixes by @hartez in https://github.com/dotnet/maui/pull/15457
  • [net7.0] Catch InvalidProtocolBufferException creating EncryptedSharedPreferences by @github-actions in https://github.com/dotnet/maui/pull/15650
  • [net7.0] [macOS] Display alert by Window by @hartez in https://github.com/dotnet/maui/pull/15651
  • [net7.0] Grid star expansion fixes (https://github.com/dotnet/maui/pull/15942)

Dependency Updates

Housekeeping

Full Changelog: https://github.com/dotnet/maui/compare/7.0.86...7.0.92

8.0.0-preview.5.8529

10 months ago

What's Changed

Dependency Updates

Housekeeping

New Contributors

Full Changelog: https://github.com/dotnet/maui/compare/8.0.0-preview.4.8333...8.0.0-preview.5.8606