From 421f7f310a39a339bfbf7e30a638110f325a20d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 9 Jun 2020 11:05:46 +0300 Subject: [PATCH] Revise Console Startup Template document. --- docs/en/Startup-Templates/Console.md | 22 +++++++++++++++++++--- docs/en/Startup-Templates/Index.md | 3 --- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/docs/en/Startup-Templates/Console.md b/docs/en/Startup-Templates/Console.md index e4eee20d3c..d42d6f913a 100644 --- a/docs/en/Startup-Templates/Console.md +++ b/docs/en/Startup-Templates/Console.md @@ -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. + +### \ No newline at end of file diff --git a/docs/en/Startup-Templates/Index.md b/docs/en/Startup-Templates/Index.md index cb649460dd..0c788a6a9c 100644 --- a/docs/en/Startup-Templates/Index.md +++ b/docs/en/Startup-Templates/Index.md @@ -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. - - -