BLOG

Great articles and guides with all the information you need

Exploring the code behind MauiAppBuilder

.NET MAUI introduced the MauiAppBuilder which is a completely new way to “boot” our cross-platform applications. Instead of using App.xaml.cs traditional all the boot code goes in MauiProgam.cs (possibly Startup.cs in the future) and Startup is much more procedural than what we had in previous versions:

Read More »

Looking inside MauiAppBuilder in .NET 6

In this article, we are going to see the MauiAppBuilder class, because it was added, and some other code implemented there so that we can understand how the structure of our applications works in .NET MAUI.

Read More »

Series: Exploring MAUI APP Builder in .NET 6

This is a series focused on the new FEATURES of the MAUI APP Builder that come in .NET 6 for .NET MAUI. A lot of content has already been written about .NET MAUI about how the builder works, including many posts from the Xamarin and MAUI teams, but there are always a few things that can be done outside of the basic configuration provided as an example.

Read More »