Setup & Installation
Getting started with the Umbraco-Suite is quick and easy. Follow these steps to integrate the ML editors into your project.
1. Install NuGet Package
Install the suite via the .NET CLI:
dotnet add package ModuLabry.Umbraco.Suite
2. Register the Suite
To ensure all property editors are correctly registered, add the following to your Program.cs (Umbraco 14+):
using ModuLabry.Umbraco.Suite;
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
builder.CreateUmbracoBuilder()
.AddBackOffice()
.AddWebsite()
.AddComposers()
.AddMLSuite() // <-- Add this line
.Build();
3. Client-Side Assets
The Umbraco-Suite uses modern Lit-based Web Components. These are automatically served via the package's App_Plugins folder.
4. First steps in Umbraco
- Log in to your Umbraco Backoffice.
- Navigate to the Settings section.
- Create a new Data Type.
- Search for "ML" to see the editors:
- Configure the editor settings as described in the respective documentation.
🔥 Licensing
Don't forget to add your license key to the appsettings.json to remove the branding notice. See the Licensing Guide for details.