Merge pull request #1710 from qzwzqty/dev

modify zh-Hans docs
pull/1711/head
maliming 5 years ago committed by GitHub
commit 816510d525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,15 +39,20 @@ abp new Acme.BookStore
#### Options
* `--template``-t`: 指定模板. 默认的模板是 `mvc`.可用的模板有:
* `mvc` (默认): ASP.NET Core [MVC应用程序模板](Startup-Templates/Mvc.md). 其他选项:
* `--database-provider``-d`: 指定数据库提供程序. 默认提供程序是 `ef`. 可用的提供程序有:
* `--template` 或者 `-t`: 指定模板. 默认的模板是 `app`,会生成web项目.可用的模板有:
* `app` (default): [应用程序模板](Startup-Templates/Application.md)。 其他选项:
* `--ui` 或者 `-u`: 指定ui框架。默认`mvc`框架。其他选项:
* `mvc`: ASP.NET Core MVC。此模板的其他选项
* `--tiered`: 创建分层解决方案Web和Http Api层在物理上是分开的。如果未指定会创建一个分层的解决方案此解决方案没有那么复杂,适合大多数场景。
* `angular`: Angular. 这个模板还有一些额外的选项:
* `--separate-identity-server`: Separates the identity server application from the API host application. If not specified, you will have a single endpoint in the server side.
* `--database-provider` 或者 `-d`: 指定数据库提供程序。默认是 `ef`。其他选项:
* `ef`: Entity Framework Core.
* `mongodb`: MongoDB.
* `--tiered`: 创建分层解决方案,Web和Http Api层在物理上是分开的. 如果未指定会创建一个分层的解决方案, 此解决方案没有那么复杂,适合大多数场景.
* `module`: [模块模板](Startup-Templates/Module.md). 其他选项:
* `--no-ui`: 不包含UI. 仅创建服务模块 (也称为微服务 - 没有UI).
* `--output-folder` 或 `-o`: 指定输出文件夹,默认是当前目录.
* `module`: [Module template](Startup-Templates/Module.md). 其他选项:
* `--no-ui`: 不包含UI。仅创建服务模块也称为微服务 - 没有UI
* `--output-folder` 或者 `-o`: 指定输出文件夹,默认是当前目录。
* `--version` 或者 `-v`: 指定ABP和模板的版本。它可以是 [release tag](https://github.com/abpframework/abp/releases) 或者 [branch name](https://github.com/abpframework/abp/branches). 如果没有指定,则使用最新版本。大多数情况下,您会希望使用最新的版本。
### add-package

@ -25,7 +25,7 @@ abp new Acme.IssueManagement -t module
默认情况模板附带一个MVC UI,你可以使用`--no-ui`选项指定不包含UI层.
````bash
abp new Acme.IssueManagement -t mvc-module --no-ui
abp new Acme.IssueManagement -t module --no-ui
````
## 解决方案结构

Loading…
Cancel
Save