From 7abf6586c3a941114f6377cfecbbefbf52d74f74 Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Mon, 30 Sep 2024 15:11:34 +0300 Subject: [PATCH] Update console & wpf startup template docs to create template with the old CLI --- docs/en/get-started/console.md | 6 ++++-- docs/en/get-started/wpf.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/en/get-started/console.md b/docs/en/get-started/console.md index df06fc33de..6a17784380 100644 --- a/docs/en/get-started/console.md +++ b/docs/en/get-started/console.md @@ -10,12 +10,14 @@ First, install the [ABP CLI](../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: +Then use the `abp new` command in an empty folder to create a new solution (with the `--old` parameter at the end of the command): ````bash -abp new Acme.MyConsoleApp -t console +abp new Acme.MyConsoleApp -t console --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.MyConsoleApp` is the solution name, like *YourCompany.YourProduct*. You can use single level, two-levels or three-levels naming. ## Solution Structure diff --git a/docs/en/get-started/wpf.md b/docs/en/get-started/wpf.md index 8ccaeac181..287119986e 100644 --- a/docs/en/get-started/wpf.md +++ b/docs/en/get-started/wpf.md @@ -10,12 +10,14 @@ First, install the [ABP CLI](../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: +Then use the `abp new` command in an empty folder to create a new solution (with the `--old` parameter at the end of the command): ````bash -abp new Acme.MyWpfApp -t wpf +abp new Acme.MyWpfApp -t wpf --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.MyWpfApp` is the solution name, like *YourCompany.YourProduct*. You can use single level, two-levels or three-levels naming. ## Solution Structure