Installing the ABP CLI
ABP CLI is the fastest way to start a new solution with the ABP framework. Install the ABP CLI using a command line window:
dotnet tool install -g Volo.Abp.Cli
Create a New Solution
abp new Acme.BookStore
You can use different level of namespaces; e.g. BookStore, Acme.BookStore or Acme.Retail.BookStore.
new command creates a layered MVC application with Entity Framework Core as the database provider. However, it has additional options. Examples:
# Use Blazor as the UI framework
abp new Acme.BookStore -u blazor
# Create a module template
abp new Acme.BookStore.Payment -t module
See the ABP CLI document for more options or select the "Direct Download" tab above.