Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.3 KiB

//[doc-seo]
{
    "Description": "Create a minimalist MAUI app with the ABP Framework; easily set up your project and explore the solution structure for development."
}

MAUI Application Startup Template

This template is used to create a minimalist MAUI application project.

How to Start With?

First, install the ABP CLI if you haven't installed before:

dotnet tool install -g Volo.Abp.Studio.Cli

Then use the abp new command in an empty folder to create a new solution:

abp new Acme.MyMauiApp -t maui --old

Note: Since this startup template is not provided by the new ABP Studio Templates yet, you need to pass the --old parameter at the end of the command to use the old CLI & templating system for this startup template.

Acme.MyMauiApp is the solution name, like YourCompany.YourProduct. You can use single level, two-levels or three-levels naming.

Solution Structure

After you use the above command to create a solution, you will have a solution like shown below:

basic-maui-application-solution

  • HelloWorldService is a sample service that implements the ITransientDependency interface to register this service to the dependency injection system.