From 79d9f1cb6826f07d0dad79127f25d12b56bf92fe Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Mon, 29 Sep 2025 08:44:03 +0300 Subject: [PATCH 1/3] Updated new-package cli command parameters --- docs/en/cli/index.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/en/cli/index.md b/docs/en/cli/index.md index 415cef1878..5ebbe30c1c 100644 --- a/docs/en/cli/index.md +++ b/docs/en/cli/index.md @@ -288,10 +288,15 @@ abp new-package --name Acme.BookStore.Domain --template lib.domain * `--template` or `-t`: Specifies the template name. This parameter doesn't have a default value and must be set. Available templates and their sub-options: * `lib.class-library` * `lib.domain-shared` + * `--add-localization`: Includes default localization configuration & language files. * `lib.domain` + * `--add-settings`: Includes default settings configuration. + * `--add-db-properties`: Includes default Database Properties class. + * `--add-domain-shared`: Includes addtional Domain Shared package. * `lib.application-contracts` * `lib.application` - * `--with-automapper`: Adds automapper configuration. + * `--add-mapperly`: Adds Mapperly configuration. + * `--add-application-contracts`: Includes addtional contracts package. * `lib.ef` * `--include-migrations`: Allows migration operations on this package. * `--connection-string-name`: Default value is the last part of the package's namespace (or package name simply). @@ -300,15 +305,18 @@ abp new-package --name Acme.BookStore.Domain --template lib.domain * `lib.http-api` * `lib.http-api-client` * `lib.mvc` + * `--add-mapperly`: Adds Mapperly configuration. * `lib.blazor` + * `--add-mapperly`: Adds Mapperly configuration. + * `--add-menu-contributors`: Includes default menu contributors. * `lib.blazor-wasm` * `lib.blazor-server` * `host.http-api` - * `--with-serilog`: Includes Serilog configuration. - * `--with-swagger`: Includes Swagger configuration. + * `--add-serilog`: Includes Serilog configuration. + * `--add-swagger`: Includes Swagger configuration. * `host.mvc` - * `--with-serilog`: Includes Serilog configuration. - * `--with-swagger`: Includes Swagger configuration. + * `--add-serilog`: Includes Serilog configuration. + * `--add-swagger`: Includes Swagger configuration. * `host.blazor-wasm` * `--backend`: Name of the backend project in the module (not path). * `host.blazor-server` From e563c30ad5dfc1cb19dd4594f8823de5841d947a Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Mon, 29 Sep 2025 08:45:49 +0300 Subject: [PATCH 2/3] Added abp.console type to cli new-package command docs --- docs/en/cli/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/cli/index.md b/docs/en/cli/index.md index 5ebbe30c1c..3f267c5780 100644 --- a/docs/en/cli/index.md +++ b/docs/en/cli/index.md @@ -320,6 +320,7 @@ abp new-package --name Acme.BookStore.Domain --template lib.domain * `host.blazor-wasm` * `--backend`: Name of the backend project in the module (not path). * `host.blazor-server` + * `abp.console` * `csharp.console` * `csharp.library` * `--module-file` or `-m`: If set, the new package will be added to the given module. Otherwise the new package will added to the closest module in the file system. If no module found, it will throw an error. From e90d5e335913b27bd4fa16698a7a6f692e9bc21f Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Fri, 10 Oct 2025 13:15:03 +0000 Subject: [PATCH 3/3] Fix typos and improve clarity in CLI documentation --- docs/en/cli/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/cli/index.md b/docs/en/cli/index.md index 3f267c5780..0fefe60b62 100644 --- a/docs/en/cli/index.md +++ b/docs/en/cli/index.md @@ -291,16 +291,16 @@ abp new-package --name Acme.BookStore.Domain --template lib.domain * `--add-localization`: Includes default localization configuration & language files. * `lib.domain` * `--add-settings`: Includes default settings configuration. - * `--add-db-properties`: Includes default Database Properties class. - * `--add-domain-shared`: Includes addtional Domain Shared package. + * `--add-db-properties`: Includes the default Database Properties class. + * `--add-domain-shared`: Includes an additional Domain Shared package. * `lib.application-contracts` * `lib.application` * `--add-mapperly`: Adds Mapperly configuration. - * `--add-application-contracts`: Includes addtional contracts package. + * `--add-application-contracts`: Includes an additional contracts package. * `lib.ef` * `--include-migrations`: Allows migration operations on this package. * `--connection-string-name`: Default value is the last part of the package's namespace (or package name simply). - * `--connection-string`: Connection string value. Defaut value is null. You can set it alter. **Note:** When specifying the connection string, make sure to enclose it in double quotes, for example: `--connection-string "Server=localhost;Database=MyProjectName;Trusted_Connection=True"`. + * `--connection-string`: Connection string value. The default value is null. You can set it later. **Note:** When specifying the connection string, make sure to enclose it in double quotes, for example: `--connection-string "Server=localhost;Database=MyProjectName;Trusted_Connection=True"`. * `lib.mongodb` * `lib.http-api` * `lib.http-api-client`