Skip to main content

Announcing .NET MAUI support for .NET 7 Release Candidate 2

.NET Multi-platform App UI (MAUI) with .NET 7 Release Candidate 2 is now available in Visual Studio 17.4 Preview 4 on both Windows and Mac. The primary themes of RC2 are quality and .NET support for Xcode 14 with iOS 16. This release is covered by a go-live support license for use in production.

In related news, new libraries have also shipped for MSAL.NET and App Center (Preview). These are both key libraries that .NET MAUI developers have been asking for. MSAL.NET is essential when using Azure Active Directory and the Microsoft identity platform for authentication. App Center provides services for app diagnostics and analytics.

Visual Studio installed on Windows

Getting Started

Install or upgrade to the latest preview of Visual Studio 2022:

  • Visual Studio 2022 for Mac – 17.4 Preview 4 Download
  • Visual Studio 2022 for Windows – 17.4 Preview 4 Download

If targeting iOS, you can now build directly to your iOS device on Windows, or if you use a Mac (or Mac build host) by installing Xcode 14.0.x from the Apple Developer website. Note Apple’s minimum requirement for Xcode 14 is macOS Monterey 12.5 which is higher than Xcode 13.4 required.

.NET MAUI Learning Resources

Whether you’re just now jumping into developing native client apps with .NET MAUI, or you’ve been at it for a while, there are a lot of resources available to help you. Don’t see what you’re looking for below? Please open an issue on GitHub and we’ll see what we can do to help.

How do I
.NET Multi-platform App UI documentation
.NET MAUI Samples
Enterprise application patterns using .NET MAUI

Beginner Training
Learn Path – Build mobile and desktop apps with .NET MAUI
.NET MAUI for beginners video series

Release Notes
.NET for Android
.NET for iOS
.NET MAUI

Community Collections
Javier’s Awesome .NET MAUI list
Vladislav’s list
Egvijay’s list
Matt’s list
Gerald Versluis’ YouTube
James Montemagno’s YouTube
Javier Suarez’s YouTube

Keeping Up-to-date
.NET MAUI podcast
* .NET MAUI blogs

Feedback

Please let us know about your experience using .NET MAUI by opening issues on GitHub, and these latest versions of Visual Studio 2022 via the feedback button (Mac | Windows).

The post Announcing .NET MAUI support for .NET 7 Release Candidate 2 appeared first on .NET Blog.



source https://devblogs.microsoft.com/dotnet/dotnet-maui-rc2/

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee