Build Controls from Sources
- 2 minutes to read
This topic describes how to build DevExpress .NET MAUI Controls from source code.
Download .NET MAUI Source Code
Our Universal Subscription includes the source code of our .NET MAUI components.
You can download the source code from our Download Manager (an active Universal subscription/license is required).

Requirements
You can build controls only on MacOS. The development environments and required frameworks are listed below:
- XCode 16
- OpenJDK 17
- Android Studio 2023.2.1+
- Platform Tools 35+
- CMake
- Ensure you define the
ANDROID_HOMEandJAVA_HOMEenvironment variables. - Mono 6.12.0
- .NET 9.0 RC2 or later, with .NET MAUI workload installed
- Latest npm
- Register the DevExpress NuGet feed in your development environment
Build Sources
The downloaded source code includes the build.cake file. Follow the steps below to build the source code:
- Unzip the
source-code.zipfile and open the unzipped folder. - Open your terminal application in the folder with the
build.cakefile. - Run the
dotnet tool restorecommand to install the .NET local tools that are in scope for the current directory. - Run the
dotnet cakecommand to build the .NET MAUI Controls from the source code.
Build Artifacts
After the build is complete, you can find build artifacts in the following folders:
- The
artifacts/packagesfolder contains NuGet packages. - The
artifacts/logsfolder contains build logs. - Binaries
- The
Binaries.Analyzersfolder contains assembles for code analyzers. - The
Binaries.Androidfolder contains assembles built for.net9.0-android. - The
Binaries.iOSfolder contains assembles built for.net9.0-ios. - The
Binaries.NETfolder contains assembles built for .NET 9.
- The