Revise Console Startup Template document.

pull/4279/head
Halil İbrahim Kalkan 5 years ago
parent b7ba11fc4e
commit 421f7f310a

@ -1,5 +1,21 @@
# Console Startup Template
# Console Application Startup Template
## Introduction
This template is used to create a minimalist console application project.
This template implements [how to start ABP from scratch with minimal dependencies](../Getting-Started-Console-Application.md).
## How to Start With?
First, install the [ABP CLI](../CLI.md) if you haven't installed before:
````bash
dotnet tool install -g Volo.Abp.Cli
````
Then use the `abp new` command in an empty folder to create a new solution:
````bash
abp new Acme.MyConsoleApp -t console
````
`Acme.MyConsoleApp` is the solution name, like *YourCompany.YourProduct*. You can use single level, two-levels or three-levels naming.
###

@ -5,6 +5,3 @@ While you can start with an empty project and add needed packages manually, star
* [**app**](Application.md): Application template.
* [**module**](Module.md): Module/service template.
* [**console**](Console.md): Console template.

Loading…
Cancel
Save